diff options
author | Emile <HanEmile@users.noreply.github.com> | 2023-04-25 12:41:46 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-25 12:41:46 +0200 |
commit | f62a447a4f0e0b073d273d032616637d2178af7e (patch) | |
tree | 44a5daae621948e9d2201e4d4346b9259d5b9be2 /.github/workflows | |
parent | 081b25ddca6e7106e8de8d10eefd75671050e717 (diff) |
Create rust.yml
Diffstat (limited to '.github/workflows')
-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..31000a2 --- /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@v3 + - name: Build + run: cargo build --verbose + - name: Run tests + run: cargo test --verbose |