Skip to content

Clean up github actions #17

Clean up github actions

Clean up github actions #17

Workflow file for this run

---

Check failure on line 1 in .github/workflows/rust.yml

View workflow run for this annotation

GitHub Actions / test

Invalid workflow file

The workflow is not valid. .github/workflows/rust.yml: Anchors are not currently supported. Remove the anchor 'test-steps'
name: test
on:
push:
branches:
- main
pull_request:
branches:
- main
env:
CARGO_TERM_COLOR: always
jobs:
test_ubuntu:
runs-on: ubuntu-latest
steps: &test-steps
- uses: actions/checkout@v4
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
test_windows:
runs-on: windows-latest
steps: *test-steps