2024-08-15 22:37:39 +02:00
|
|
|
name: Cargo build & test
|
|
|
|
on:
|
|
|
|
push:
|
2024-09-27 16:05:04 +02:00
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
- development
|
|
|
|
- 'releases/**'
|
2024-08-15 22:37:39 +02:00
|
|
|
pull_request:
|
|
|
|
|
|
|
|
env:
|
|
|
|
CARGO_TERM_COLOR: always
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build_and_test:
|
|
|
|
name: Rust project
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v4
|
|
|
|
- run: cargo test --verbose
|