Skip to content

Add SymbolTable::dump #299

Add SymbolTable::dump

Add SymbolTable::dump #299

Workflow file for this run

---
name: Rust
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-11, windows-latest]
steps:
- uses: actions/checkout@v3
- name: Rust Format
run: cargo fmt --all -- --check
- name: Build
run: cargo build --release --verbose
- name: Clippy
run: cargo clippy --all-targets -- -D warnings -D clippy::dbg_macro
- name: Run tests
run: cargo test --verbose -- --skip sourcegen_ast --skip sourcegen_ast_nodes
msrv:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-11, windows-latest]
steps:
- uses: actions/checkout@v3
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@1.70
- name: Build
run: cargo build --release --verbose
- name: Run tests
run: cargo test --verbose --lib --tests -- --skip sourcegen_ast --skip sourcegen_ast_nodes