Skip to content

Set the edition

Set the edition #22

Workflow file for this run

name: build
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
jobs:
agnostic:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- run: rustup toolchain install stable --profile=minimal --component clippy --component rustfmt
- run: make check
macos:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- run: rustup toolchain install nightly --profile=minimal
- run: make test
- run: make bench
ubuntu:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: rustup toolchain install nightly --profile=minimal
- run: make test
- run: make bench