Skip to content
This repository has been archived by the owner on May 23, 2024. It is now read-only.

Deprecation notice #243

Deprecation notice

Deprecation notice #243

Workflow file for this run

name: CI
on:
pull_request:
branches:
- master
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
CARGO_TERM_COLOR: always
jobs:
test_dev:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --workspace
- name: Test
run: cargo test --workspace
test_release:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --release --workspace
- name: Test
run: cargo test --release --workspace
lint:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Rustfmt
run: cargo fmt --check --verbose
- name: Clippy
run: cargo clippy -- -Dwarnings