fix path #3
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: 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: | | |
sudo chmod +x ./process-manager/tmux/test.sh | |
sudo ./process-manager/tmux/test.sh |