From df603d7b6e202865f6f52a23ae3b0ed862eb4858 Mon Sep 17 00:00:00 2001 From: Kazuya Takei Date: Fri, 8 Mar 2024 03:38:58 +0900 Subject: [PATCH] ci: Run build and test in GHA --- .github/workflows/main.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..e9cc96e --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,15 @@ +name: 'CI jobs' + +on: + push: + +jobs: + test: + runs-on: 'ubuntu-latest' + steps: + - uses: 'actions/checkout@v4' + - name: 'Build' + run: cargo build --verbose + - name: 'Run test' + run: cargo test --verbose +