2023-07-07 17:20:36 -04:00
|
|
|
---
|
2023-04-28 06:12:56 -04:00
|
|
|
name: Rust
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2023-04-29 05:15:08 -04:00
|
|
|
branches:
|
2023-08-29 13:52:02 -04:00
|
|
|
- '**'
|
2023-04-28 06:12:56 -04:00
|
|
|
pull_request:
|
2023-04-29 05:15:08 -04:00
|
|
|
branches:
|
2023-08-29 13:52:02 -04:00
|
|
|
- 'rolling'
|
2023-04-28 06:12:56 -04:00
|
|
|
|
|
|
|
env:
|
|
|
|
CARGO_TERM_COLOR: always
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
2023-04-28 06:51:00 -04:00
|
|
|
runs-on: ubuntu-latest
|
2023-04-28 06:12:56 -04:00
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
toolchain:
|
|
|
|
- stable
|
|
|
|
|
|
|
|
steps:
|
2023-08-30 10:58:16 -04:00
|
|
|
- name: Install LuaJIT and Lua
|
|
|
|
run: |
|
|
|
|
sudo apt-get update
|
|
|
|
sudo apt-get install -y --no-install-recommends liblua5.4-dev liblua5.3-dev liblua5.2-dev liblua5.1-0-dev libluajit-5.1-dev
|
2023-08-29 13:52:02 -04:00
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- run: rustup toolchain install stable --profile minimal
|
|
|
|
- uses: Swatinem/rust-cache@v2
|
|
|
|
with:
|
|
|
|
prefix-key: ''
|
|
|
|
shared-key: ''
|
|
|
|
key: ''
|
|
|
|
env-vars: ''
|
|
|
|
workspaces: ''
|
|
|
|
cache-directories: ''
|
|
|
|
cache-targets: ''
|
|
|
|
cache-on-failure: ''
|
|
|
|
cache-all-crates: ''
|
|
|
|
save-if: ''
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
|
|
|
|
- name: Build
|
|
|
|
run: cargo build --verbose
|
|
|
|
- name: Run tests
|
|
|
|
run: cargo test --verbose
|