Build: Remove 'check' task when building game-installers #678
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
# Runs all build checks on any pull request or merges to master | |
name: Verify | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: temurin | |
java-version: 11 | |
- uses: isbang/[email protected] | |
with: | |
compose-file: ".docker/docker-compose.yml" | |
- name: Run Build Checks | |
run: ./verify --exclude-task composeUp | |