Files
rusty-tasks/.gitea/workflows/build.yaml
Andrei Stoica 887eb954a8
All checks were successful
Test / test (push) Successful in 40s
build workflow
2026-04-15 00:39:11 -04:00

18 lines
371 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