Skip to content

Remove outdated comment #110

Remove outdated comment

Remove outdated comment #110

Workflow file for this run

name: CI
on: [pull_request, push]
env:
CARGO_TERM_COLOR: always
RUSTFLAGS: --deny warnings
jobs:
style:
name: Check basic style
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: LukasKalbertodt/[email protected]
with:
files: '**/!(*.md|*.json)'
check:
name: 'Build & test'
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- run: cargo build
- run: cargo test
- run: cargo doc