diff --git a/.forgejo/workflows/rust.yml b/.forgejo/workflows/rust.yml new file mode 100644 index 0000000..8b50f00 --- /dev/null +++ b/.forgejo/workflows/rust.yml @@ -0,0 +1,26 @@ +name: Rust + +on: + push: + branches: [ "master" ] + pull_request: + branches: [ "master" ] + +env: + CARGO_TERM_COLOR: always + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v6 + + - name: Install Rust + run: apt update && apt install cargo rustc -y + + - name: Build + run: cargo build --verbose + + - name: Run tests + run: cargo test --verbose -- --no-capture +