Skip to content

Merge pull request #7 from JCBurnside/feature/code_gen #69

Merge pull request #7 from JCBurnside/feature/code_gen

Merge pull request #7 from JCBurnside/feature/code_gen #69

Workflow file for this run

name: Rust
on:
push:
branches: [ "*" ]
pull_request:
branches:
- main
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install LLVM and Clang
uses: KyleMayes/[email protected]
with:
version: "13"
- name: rust-toolchain
uses: actions-rs/[email protected]
with:
toolchain: nightly
override: true
components: rustfmt, clippy,
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose