Skip to content

ci: 💚 fix build ci #2

ci: 💚 fix build ci

ci: 💚 fix build ci #2

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: UNIT
# Controls when the workflow will run
on:
pull_request:
branches: [ "master" ]
merge_group:
types: [checks_requested]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
unit:
# The type of runner that the job will run on
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
# Runs a single command using the runners shell
- name: Cargo test
run: cargo test