git-next/.forgejo/workflows/push-next.yml

34 lines
592 B
YAML
Raw Normal View History

2024-05-16 06:52:22 +01:00
name: Rust
on:
push:
branches: ["next"]
pull_request:
branches: ["main"]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: docker
steps:
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- uses: actions-rs/cargo@v1
with:
command: build
# args: --release --all-features
- uses: actions-rs/cargo@v1
with:
command: test
# - name: Build
# run: cargo build --verbose
# - name: Run tests
# run: cargo test --verbose