diff options
| author | ArcaneDev <alive6863@gmail.com> | 2025-10-30 22:25:13 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-10-30 22:25:13 +0300 |
| commit | 7017e4dcf17ab228ffc1e26f93e84e65ef9183e2 (patch) | |
| tree | 01d85888ce679a6f9d77fc3dd715e911cd9e2518 /.github/workflows | |
| parent | 87baa54521aeb5ecb631458ce5e697013cf9d78a (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..4e1ea1f --- /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 --release + - name: Run tests + run: cargo test --verbose |
