Martin Berg Alstad 8df3809a6a
Some checks failed
Build & test / build (push) Failing after 5s
Replaced .github workflow with gitea workflow
2024-10-05 14:56:34 +02:00

18 lines
281 B
YAML

name: Build & test
on:
push:
pull_request:
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