Skip to content

asm: Rename Compiler to Code generator #58

asm: Rename Compiler to Code generator

asm: Rename Compiler to Code generator #58

Workflow file for this run

---
name: ci
on:
push:
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
build:
strategy:
matrix:
toolchain:
- stable
- beta
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: ${{ matrix.toolchain }}
components: rustfmt, clippy
- name: Format
run: cargo fmt --all -- --check
- name: Build
run: cargo build --verbose
- name: Run test
run: cargo test
- name: Run clippy
run: cargo clippy -- -D warnings