add gameap-files installator #7
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: [ '*' ] | |
| pull_request: | |
| branches: [ '*' ] | |
| jobs: | |
| test: | |
| strategy: | |
| matrix: | |
| os: [ 'ubuntu:18.04', 'ubuntu:22.04' ] | |
| runs-on: ubuntu-latest | |
| container: | |
| image: ${{ matrix.distro }} | |
| options: --user root | |
| volumes: | |
| - /usr/local/share/ca-certificates:/usr/local/share/ca-certificates | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v2 | |
| - name: Set up dependencies | |
| run: sudo apt update -y && sudo apt install tmux -y | |
| - name: Run tests | |
| run: | | |
| tmux new | |
| sudo chmod +x ./process-manager/tmux/test.sh | |
| cd ./process-manager/tmux/ && sudo ./test.sh |