diff options
author | Santo Cariotti <santo@dcariotti.me> | 2024-08-21 17:43:01 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-21 17:43:01 +0200 |
commit | f70715333fff23230b8281843a0f6873fc5b8ba9 (patch) | |
tree | eccbe7fbc08ec48313377c1fdfd1d0fc55d8b989 | |
parent | a76200bb7adb6189d84e0e98d6233a470ebeee98 (diff) |
Create rust.yml
-rw-r--r-- | .github/workflows/rust.yml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml new file mode 100644 index 0000000..9fd45e0 --- /dev/null +++ b/.github/workflows/rust.yml @@ -0,0 +1,22 @@ +name: Rust + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +env: + CARGO_TERM_COLOR: always + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - name: Build + run: cargo build --verbose + - name: Run tests + run: cargo test --verbose |