diff options
author | tcmal <me@aria.rip> | 2024-08-25 17:44:19 +0100 |
---|---|---|
committer | tcmal <me@aria.rip> | 2024-08-25 17:44:19 +0100 |
commit | b479a65a5a8a9febd20d249889ff33c61fde9b6a (patch) | |
tree | cc30e16d12f73e00223cff964ecbe614e583735c /.github | |
parent | c2b98374605d7215ef259110cf8ac46d0cc18b31 (diff) |
Update rust.yml
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/rust.yml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml new file mode 100644 index 0000000..fec17ad --- /dev/null +++ b/.github/workflows/rust.yml @@ -0,0 +1,15 @@ +name: Rust + +on: [push] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v1 + - name: Build + run: cargo build --verbose + - name: Run tests + run: cargo test --verbose |