Skip to content

chore: add .gitignore, remove tracked artifacts #3

chore: add .gitignore, remove tracked artifacts

chore: add .gitignore, remove tracked artifacts #3

Workflow file for this run

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