Merge branch 'feature-hooks-rewrite' #291
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: check pull request | |
on: | |
pull_request: | |
branches: | |
- master | |
push: | |
branches: | |
- master | |
env: | |
PACKAGES: lua5.1 lua-md5 lua-filesystem lua-check make | |
jobs: | |
make-check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Packages | |
run: sudo apt-get install $PACKAGES | |
- name: Checkout DCT | |
uses: actions/checkout@v2 | |
with: | |
path: dct | |
- name: Checkout lua-libs | |
uses: actions/checkout@v2 | |
with: | |
repository: jtoppins/lua-libs | |
path: lua-libs | |
- name: Run Tests | |
run: make check | |
working-directory: dct |