Skip to content

fix: add build dependencies for CI #45

fix: add build dependencies for CI

fix: add build dependencies for CI #45

Workflow file for this run

name: Rust
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
env:
LLVM_SYS_160_PREFIX: ${{ runner.temp }}/llvm-16

Check failure on line 17 in .github/workflows/rust.yml

View workflow run for this annotation

GitHub Actions / Rust

Invalid workflow file

The workflow is not valid. .github/workflows/rust.yml (Line: 17, Col: 28): Unrecognized named-value: 'runner'. Located at position 1 within expression: runner.temp

Check failure on line 17 in .github/workflows/rust.yml

View workflow run for this annotation

GitHub Actions / Rust

Invalid workflow file

The workflow is not valid. .github/workflows/rust.yml (Line: 17, Col: 28): Unrecognized named-value: 'runner'. Located at position 1 within expression: runner.temp
steps:
- uses: ConorMacBride/install-package@v1
with:
apt: libpango1.0-dev libgtk-4-dev
- uses: KyleMayes/install-llvm-action@v1
with:
version: "16.0"
directory: $LLVM_SYS_160_PREFIX
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose