Skip to content

Merge pull request #722 from Hasidasbuilds/feature/Hasidasbuilds-fixes #256

Merge pull request #722 from Hasidasbuilds/feature/Hasidasbuilds-fixes

Merge pull request #722 from Hasidasbuilds/feature/Hasidasbuilds-fixes #256

Workflow file for this run

name: Devkit CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
name: Build & Test on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v4
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
- name: Run Cargo Check
run: cargo check --workspace
- name: Run Cargo Test
run: cargo test --workspace