diff options
| author | ArcaneDev <alive6863@gmail.com> | 2025-03-24 21:49:25 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-03-24 21:49:25 +0300 |
| commit | 37223ed8e6c35efae7b8c45d776920dc3e069dd1 (patch) | |
| tree | ca8f24d26790930c5d4804b6e5d0f6b834585ed4 /.github | |
| parent | 667a259c981df9f08c49d4fe83fc2f907be06784 (diff) | |
Create rust.yml
Diffstat (limited to '.github')
| -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 |
