Skip to content

Fix language version errors, GA push filters #35

Fix language version errors, GA push filters

Fix language version errors, GA push filters #35

Workflow file for this run

name: Lua Coverage
on:
push:
paths:
- 'lua/**'
- '!lua/README.rst'
- '.github/workflows/lua-cov.yml'
schedule:
- cron: "0 0 1 * *"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: macos-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install dependencies
run: brew install [email protected] luarocks
- run: sudo luarocks install luacov
- run: lua -v && make lu_test COV=true
- name: Upload coverage reports to Codecov
uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}
flags: Lua