Fix skill names (fixes dd7e0c1 - Fix Poison skill class) #38
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: test | |
| on: [push, pull_request] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: install | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get --yes install g++ make cmake libboost-all-dev lcov | |
| - name: build | |
| run: make debug && make test | |
| - name: xml fetch | |
| run: ./update_xml.sh | |
| - name: test | |
| run: ./tuo-test --log_level=message | |
| - name: lcov | |
| run: | | |
| lcov -b . -d . -o coverage.output --capture --ignore-errors inconsistent --ignore-errors mismatch --ignore-errors unused | |
| lcov --remove coverage.output '/usr/include/*' './include/*' '*/extern/*' '*rapidxml.hpp*' '/usr/lib/*' -o coverage.output --ignore-errors inconsistent --ignore-errors mismatch --ignore-errors unused | |
| - name: Coveralls | |
| uses: coverallsapp/github-action@master | |
| with: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| path-to-lcov: coverage.output |