fix few minor bugs while playing with game #187
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: "Tests" | |
on: | |
push: | |
branches: [master] | |
paths-ignore: | |
- '**.md' | |
- 'cli/' | |
- 'electron/' | |
- 'www/' | |
pull_request: | |
branches: [master] | |
types: [ready_for_review] | |
paths-ignore: | |
- '**.md' | |
- 'cli/' | |
- 'electron/' | |
- 'www/' | |
jobs: | |
composer-check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
persist-credentials: false | |
- name: "Install Linux dependencies" | |
timeout-minutes: 1 | |
run: | | |
sudo apt-get update && sudo apt-get install -y \ | |
composer | |
- name: "Install Composer dependencies" | |
timeout-minutes: 1 | |
run: | | |
composer install -o | |
- name: "Run Composer check" | |
timeout-minutes: 1 | |
run: | | |
composer check |