LibEventSourcing.toc, 'interface' fields now support multiple values per line #23
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: PR checks | |
on: [pull_request] | |
jobs: | |
lint: | |
name: Run luacheck | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: luacheck | |
uses: nebularg/actions-luacheck@v1.1.0 | |
with: | |
files: source | |
commitlint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- uses: wagoid/commitlint-github-action@v4 | |
test: | |
name: Run tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: install gitman | |
run: pipx install gitman | |
- name: install dependencies | |
run: gitman install | |
- uses: leafo/gh-actions-lua@v8.0.0 | |
with: | |
luaVersion: "5.1.5" | |
- name: Run tests | |
run: ./runtests.sh |