Run Celeste TASes on pull requests #15
Workflow file for this run
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: TAS Sync Check | |
on: | |
pull_request: | |
branches: [dev] | |
jobs: | |
check: | |
strategy: | |
matrix: | |
tas: | |
- name: Celeste 100% | |
mod: Celeste | |
url: "https://github.com/VampireFlower/CelesteTAS/archive/60b1680e61e43ec4681d7c9053d249491e0fe905.zip" | |
path: "CelesteTAS-60b1680e61e43ec4681d7c9053d249491e0fe905/0 - 100%.tas" | |
- name: Strawberry Jam All Levels | |
mod: StrawberryJam2021 | |
url: "https://github.com/VampireFlower/StrawberryJamTAS/archive/0f0c6ee2112a2189b8d574704028db2fd37ee05e.zip" | |
path: "StrawberryJamTAS-0f0c6ee2112a2189b8d574704028db2fd37ee05e/0-SJ All Levels.tas" | |
runs-on: ubuntu-latest | |
timeout-minutes: 60 | |
name: ${{ matrix.tas.name }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Wait for Azure build on commit ${{ github.sha }} | |
run: cd .github/tas-check && ./1-get-build-url.sh "${{ github.sha }}" | |
- name: Install Everest and ${{ matrix.tas.mod }} | |
run: cd .github/tas-check && ./2-1-install.sh "${{ matrix.tas.mod }}" "${{ matrix.tas.url }}" | |
- name: Run TAS at ${{ matrix.tas.path }} | |
run: cd .github/tas-check && ./3-run.sh "${{ matrix.tas.path }}" |