Skip to content

Redesign

Redesign #90

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
env:
CARGO_TERM_COLOR: always
jobs:
build_and_test:
strategy:
matrix:
os: [ubuntu-latest, macos-14, macos-13, macos-12]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Rust Caching
uses: Swatinem/[email protected]
- name: Install Dependencies
run: make deps
- name: Install Calyx
run: make ci_install_calyx
- name: Check Setup
run: make ci_check
- name: Build
run: make build
- name: Test
run: make test
- name: Lint
run: make lint