Replace missing sprite for Area and CityBlock trackers #233
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install lua5.2 | |
run: sudo apt-get install lua5.2 | |
- name: lint | |
uses: mrcjkb/[email protected] | |
with: | |
checkLevel: Error | |
configpath: ".luarc.json" | |
- name: unit test | |
run: lua test-suite.lua -v | |
working-directory: tests |