diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2021-10-24 11:01:58 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2021-10-24 11:06:51 -0400 |
commit | 32ae82214c7c06744f1e8bc0f2789551087a20fe (patch) | |
tree | 842a7a653790e1895a49dcd321ea5e1425af6ad6 /.github | |
parent | d64807aab65a4e25012c639b28d5ac60e24dac32 (diff) | |
download | acap-32ae82214c7c06744f1e8bc0f2789551087a20fe.tar.xz |
ci: Switch to GitHub Actions
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/ci.yml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..39a9378 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,18 @@ +name: CI + +on: [push, pull_request] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + + - uses: actions-rs/toolchain@v1 + with: + toolchain: stable + + - uses: actions-rs/cargo@v1 + with: + command: test |