otclient-redemption/.github/workflows/tests-lua.yml
Beats 33e7bcff7d
[Enhancement] - Fix gha actions warnings (#349)
Updated actions to work with new GHA features, preventing future builds from breaking because they are outdated.
2022-11-04 13:24:58 -03:00

23 lines
361 B
YAML

---
name: Tests - Lua
on:
pull_request:
push:
branches:
- main
jobs:
job:
name: Run Lua Tests
runs-on: ubuntu-latest
steps:
- name: Update
run: sudo apt-get update
- name: Setup Lua
run: sudo apt-get install -y lua5.1 liblua5.1-0-dev
- name: Check out code.
uses: actions/checkout@main