From 64946877a3545256703262cd494c654013d1f02f Mon Sep 17 00:00:00 2001 From: Dmitry Marakasov Date: Fri, 19 Jan 2024 20:16:22 +0300 Subject: [PATCH] Add github CI action --- .github/workflows/ci.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..e648caf --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,16 @@ +name: CI +on: [ push, pull_request ] +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Build + run: cargo build + - name: Test + run: cargo test +# if: ${{ contains(matrix.features, 'coverage') }} +# uses: codecov/codecov-action@v3 +# with: +# fail_ci_if_error: true +# gcov: true