diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml new file mode 100644 index 0000000..5af43e2 --- /dev/null +++ b/.github/workflows/CI.yml @@ -0,0 +1,21 @@ +on: + push: + branches: [master] + pull_request: + +name: Continuous integration + +jobs: + + test: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: actions-rs/toolchain@v1 + with: + toolchain: nightly + override: true + profile: minimal + - uses: actions-rs/cargo@v1 + with: + command: test