Skip to content

test: Add lua unit test #65

test: Add lua unit test

test: Add lua unit test #65

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
steps:
- uses: ConorMacBride/install-package@v1
with:
apt: libpango1.0-dev libgtk-4-dev
- uses: leafo/gh-actions-lua@v10
with:
luaVersion: "5.4"
run: echo ".lua/bin" >> $GITHUB_ENV
- 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