Github test workflow: bump checkout action to v4 #8
Workflow file for this run
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-ignore: | |
- 'gh-pages' | |
pull_request: | |
branches-ignore: | |
- 'gh-pages' | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install dependencies | |
run: sudo apt-get install shunit2 | |
- name: Check out branch | |
uses: actions/checkout@v4 | |
- name: Create the minecraft user | |
run: sudo adduser --system minecraft | |
- name: Run tests | |
run: sudo /bin/bash ./test.sh |