Skip to content

feat(compiler): introduce code section #68

feat(compiler): introduce code section

feat(compiler): introduce code section #68

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
concurrency:
group: ${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
- uses: taiki-e/install-action@nextest
- run: cargo nextest run --all-features
check:
name: Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
- name: Format
run: cargo fmt --check
- name: Clippy
run: cargo clippy --all-features -- -D warnings