mirror of
https://github.com/mehah/otclient
synced 2026-08-15 16:29:06 -04:00
Updated actions to work with new GHA features, preventing future builds from breaking because they are outdated.
23 lines
361 B
YAML
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
|