Fix issues and defaults so that they suit my use of the plugin #3
This file contains hidden or 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: RollFor Tests | |
| on: | |
| push: | |
| branches: [ "master", "v3" ] | |
| pull_request_target: | |
| types: [opened, reopened, edited, synchronize] | |
| branches: [ "master" ] | |
| jobs: | |
| test: | |
| name: Run tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| ref: ${{ github.event.pull_request.head.sha }} | |
| fetch-depth: 0 | |
| - name: Install Lua | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y lua5.4 liblua5.4-dev | |
| # - name: Install LuaRocks | |
| # run: | | |
| # sudo apt-get install -y luarocks | |
| - name: Run tests | |
| run: | | |
| ./test.sh | |