Skip to content

Merge pull request #91 from wiktor-k/wiktor/update-once-cell #269

Merge pull request #91 from wiktor-k/wiktor/update-once-cell

Merge pull request #91 from wiktor-k/wiktor/update-once-cell #269

Workflow file for this run

name: CI
on:
pull_request:
push:
tags:
- 'v*'
branches: [ main ]
workflow_dispatch:
concurrency:
group: rust-${{ github.ref }}
cancel-in-progress: true
jobs:
check-spelling:
name: Check spelling
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Check spelling
uses: codespell-project/actions-codespell@v2
formatting:
name: Check formatting
strategy:
matrix:
include:
- os: ubuntu-latest
- os: macos-latest
- os: windows-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: taiki-e/install-action@just
- run: rustup install nightly
- run: rustup component add rustfmt --toolchain nightly
- name: Check formatting
run: just formatting
tests:
name: Unit tests
strategy:
matrix:
include:
- os: ubuntu-latest
- os: macos-latest
- os: windows-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: taiki-e/install-action@just
- run: just install-packages
- name: Run unit tests
run: just tests
deps:
name: Check dependencies
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run dependencies check
uses: EmbarkStudios/cargo-deny-action@v1
lints:
name: Clippy lints
strategy:
matrix:
include:
- os: ubuntu-latest
- os: macos-latest
- os: windows-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: taiki-e/install-action@just
- run: just install-packages
- name: Check for lints
run: just lints