lua: fix table member reference in set_syntax #64
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: macOS | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: macos-latest | |
strategy: | |
matrix: | |
config: | |
- "" | |
- --disable-curses | |
- --disable-lua | |
- --disable-tre | |
- --disable-help | |
env: | |
CFLAGS_EXTRA: --coverage | |
LDFLAGS_EXTRA: --coverage | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Dependency Homebrew | |
run: | | |
brew install \ | |
busted \ | |
coreutils \ | |
libtermkey \ | |
lua \ | |
luarocks \ | |
tre \ | |
pkg-config | |
- name: Dependency LuaRocks | |
run: | | |
sudo luarocks install lpeg | |
sudo luarocks install busted | |
- name: Build | |
run: | | |
./configure ${{ matrix.config }} | |
make | |
- name: Test | |
run: | | |
make test | |
- name: Upload Test Coverage | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
run: | | |
curl -s https://codecov.io/bash > codecov | |
curl -s https://raw.githubusercontent.com/codecov/codecov-bash/master/SHA256SUM > codecov.sha256 | |
if ! sha256sum -c --ignore-missing --status codecov.sha256 ; then | |
echo "Download checksum verification failed" | |
exit 1 | |
fi | |
bash < codecov |