diff options
author | Emile <git@emile.space> | 2023-04-25 18:50:50 +0200 |
---|---|---|
committer | Emile <git@emile.space> | 2023-04-25 18:50:50 +0200 |
commit | 23bac78a03991f398ca9b4bb4cf1e66643cba9f3 (patch) | |
tree | d867d0fe953ff30dc5a2a96e0ba1ce4932b8318d /.github/workflows | |
parent | bb9f0e2471aa932eef03620fa45488446dc7bbf3 (diff) | |
parent | f62a447a4f0e0b073d273d032616637d2178af7e (diff) |
Merge branch 'main' of https://github.com/HanEmile/vokobe
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 |