Files
rusty-tasks/.gitea/workflows/build.yaml
Andrei Stoica e861bf99f7
Some checks failed
Test / test (push) Has been cancelled
more build actions testing
2026-04-15 00:42:58 -04:00

21 lines
387 B
YAML

name: Build
on:
release:
types:
- published
pull_request:
types:
- opened
- edited
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: dtolnay/rust-toolchain@stable
- name: Run tests
run: cargo test
- name: Run tests
run: cargo build --release --target x86_64-unknown-linux-gnu