Skip to content

Merge branch 'main' of github.com:rimecraft-rs/rimecraft #80

Merge branch 'main' of github.com:rimecraft-rs/rimecraft

Merge branch 'main' of github.com:rimecraft-rs/rimecraft #80

Workflow file for this run

name: Test
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build with release
run: cargo build --all-features --release --workspace
- name: Run tests
run: cargo test --all-features --release --workspace