allow setting custom condition (#121) #166
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: test | |
on: | |
push: | |
branches: main | |
pull_request: | |
branches: main | |
permissions: { } | |
jobs: | |
busted: | |
name: tests | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: read | |
# To report GitHub Actions status checks | |
statuses: write | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
- name: setup ‘lua’ | |
uses: leafo/[email protected] | |
with: | |
luaVersion: "5.1" | |
- name: setup ‘luarocks’ | |
uses: leafo/gh-actions-luarocks@v4 | |
- name: setup dependencies | |
run: | | |
luarocks install busted | |
luarocks install luacov-coveralls | |
- name: run | |
run: busted -c -v | |
env: | |
LUA_PATH: "/home/runner/work/tmux.nvim/tmux.nvim/?.lua;/home/runner/work/tmux.nvim/tmux.nvim/lua/?/init.lua;/home/runner/work/tmux.nvim/tmux.nvim/lua/?.lua;/home/runner/work/tmux.nvim/tmux.nvim/spec/?/init.lua;/home/runner/work/tmux.nvim/tmux.nvim/spec/?.lua;" | |
- name: report | |
if: success() | |
continue-on-error: true | |
run: luacov-coveralls -i tmux.nvim/lua -e .luarocks | |
env: | |
COVERALLS_REPO_TOKEN: ${{ github.token }} | |
LUA_PATH: "/home/runner/work/tmux.nvim/tmux.nvim/?.lua;/home/runner/work/tmux.nvim/tmux.nvim/lua/?/init.lua;/home/runner/work/tmux.nvim/tmux.nvim/lua/?.lua;/home/runner/work/tmux.nvim/tmux.nvim/spec/?/init.lua;/home/runner/work/tmux.nvim/tmux.nvim/spec/?.lua;" |