Skip to content

Run Celeste TASes on pull requests #7

Run Celeste TASes on pull requests

Run Celeste TASes on pull requests #7

Workflow file for this run

name: TAS Sync Check
on:
pull_request:
branches: [dev]
jobs:
check:
strategy:
matrix:
tas:
- name: Celeste 100%
mod: Celeste
path: "CelesteTAS-master/0 - 100%.tas"
- name: Strawberry Jam All Levels
mod: StrawberryJam2021
path: "StrawberryJamTAS-main/0-SJ All Levels.tas"
runs-on: ubuntu-latest
timeout-minutes: 60
name: Check TAS Sync - ${{ 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 ${{ env.GITHUB_SHA }}
run: cd .github/tas-check && chmod u+x ./1-get-build-url.sh && ./1-get-build-url.sh "${{ env.GITHUB_SHA }}"
- name: Install Everest and ${{ matrix.tas.mod }}
run: cd .github/tas-check && chmod u+x ./2-1-install.sh && ./2-1-install.sh "${{ matrix.tas.mod }}"
- name: Run TAS at ${{ matrix.tas.path }}
run: cd .github/tas-check && chmod u+x ./3-run.sh && ./3-run.sh "${{ matrix.tas.path }}"