Skip to content

Merge pull request #38 from sir-gon/renovate/github-codeql-action-4.x #159

Merge pull request #38 from sir-gon/renovate/github-codeql-action-4.x

Merge pull request #38 from sir-gon/renovate/github-codeql-action-4.x #159

Workflow file for this run

---
name: Rust Test
on: # yamllint disable-line rule:truthy
push:
branches: ["main"]
pull_request:
# The branches below must be a subset of the branches above
branches: ["main"]
workflow_dispatch:
env:
CARGO_TERM_COLOR: always
jobs:
build:
name: "RUST Build and Test"
strategy:
fail-fast: false
matrix:
os: ["windows-2022", "ubuntu-24.04", "macos-14"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v5
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose