This repository was archived by the owner on Oct 21, 2025. It is now read-only.
Add support for 8s Recoup and new mods (#54) #117
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: Run Tests | |
| on: | |
| push: | |
| branches: [ dev ] | |
| pull_request: | |
| branches: [ dev ] | |
| workflow_dispatch: | |
| jobs: | |
| run_tests: | |
| runs-on: ubuntu-latest | |
| container: ghcr.io/pathofbuildingcommunity/pathofbuilding-tests:latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Run tests | |
| run: busted --lua=luajit | |
| - name: Report coverage | |
| run: cd src; luacov-coveralls --repo-token=${{ secrets.github_token }} -e TestData -e Data -e runtime |