Skip to content

CI/CD: migrate actions that are deprecated #38

CI/CD: migrate actions that are deprecated

CI/CD: migrate actions that are deprecated #38

Workflow file for this run

name: CI
on:
push:
branches: [master, testing, "release/v[0-9].[0-9]"]
pull_request:
branches: [master]
workflow_dispatch:
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macOS-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
- name: Build
run: cargo build --verbose --workspace
- name: Run tests
run: cargo test --verbose --workspace