Skip to content

Add material for TABConf7 workshop #62

Add material for TABConf7 workshop

Add material for TABConf7 workshop #62

Workflow file for this run

name: CI
on:
push:
branches: [ "develop" ]
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
build-test:
runs-on: ubuntu-latest
strategy:
matrix:
rust:
- version: stable
steps:
- uses: actions/checkout@v4
- name: Install Rust
uses: dtolnay/rust-toolchain@v1
with:
toolchain: ${{ matrix.rust.version }}
- name: Test
run: cargo test --no-fail-fast --all-features
fmt-clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Rust
uses: dtolnay/rust-toolchain@v1
with:
toolchain: stable
components: clippy, rustfmt
- name: Rust fmt
run: cargo fmt --all -- --check
- name: Clippy
run: cargo clippy --all-targets --all-features -- -Dwarnings