refactor: Rewrite Graphviz label group #137
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Rust | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: ConorMacBride/install-package@v1 | |
with: | |
apt: libpango1.0-dev libgtk-4-dev liblua5.4-dev lua5.4 | |
- uses: KyleMayes/install-llvm-action@v1 | |
with: | |
version: "17.0" | |
directory: ${{ runner.temp }}/llvm-17 | |
- uses: actions/checkout@v3 | |
- name: Build | |
run: cargo build --verbose | |
env: | |
LLVM_SYS_170_PREFIX: ${{ runner.temp }}/llvm-17 | |
- name: Run tests | |
run: | | |
cargo test --verbose | |
env: | |
LLVM_SYS_170_PREFIX: ${{ runner.temp }}/llvm-17 | |
- name: Run tests with default parser | |
run: | | |
cargo test --verbose --no-default-features --package stc-rs | |
env: | |
LLVM_SYS_170_PREFIX: ${{ runner.temp }}/llvm-17 |