Skip to content

Attribute macros for interface definition and implementation #308

Attribute macros for interface definition and implementation

Attribute macros for interface definition and implementation #308

Workflow file for this run

name: pliron
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
name: Build and Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
- name: Setup LLVM
run: |
wget https://apt.llvm.org/llvm.sh
chmod +x llvm.sh
sudo ./llvm.sh 17 all
- name: Build
run: RUSTFLAGS="-D warnings" cargo build --workspace --verbose
- name: Tests (Debug)
run: cargo test --workspace --verbose
- name: Tests (Release)
run: cargo test --release --workspace --verbose
- name: Clippy
run: cargo clippy --workspace -- -D warnings
- name: Format
run: cargo fmt --check
- name: Documentation
run: RUSTDOCFLAGS="-D warnings" cargo doc --workspace