diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..f17faeb --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,12 @@ +name: Test +on: [push] + +jobs: + build: + name: test + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@master + - uses: cyplo/rust-action@master + with: + args: "cargo fmt -- --check && cargo clippy -- -Dwarnings && cargo test"