Skip to content

chore: Fix the lint warnings #401

chore: Fix the lint warnings

chore: Fix the lint warnings #401

Workflow file for this run

name: Build
on: [push, pull_request]
jobs:
build:
name: Test Suite
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.experimental }}
strategy:
matrix:
os: [ubuntu-latest]
toolchain: [stable, "1.78.0"]
experimental: [false]
include:
- os: ubuntu-latest
toolchain: nightly
experimental: true
- os: windows-latest
toolchain: stable
experimental: true
- os: windows-latest
toolchain: nightly
experimental: true
- os: macos-latest
toolchain: stable
experimental: true
- os: macos-latest
toolchain: nightly
experimental: true
steps:
- name: Checkout sources
uses: actions/checkout@v4
with:
submodules: recursive
- name: Install ${{ matrix.toolchain }} toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: ${{ matrix.toolchain }}
override: true
- name: Build the project
uses: actions-rs/cargo@v1
with:
command: build
args: --release