Implement a more reliable TOC version check (using Blizzard's CDN) #239
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: Table of Contents | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened, ready_for_review] | |
branches: [master] | |
jobs: | |
toc: | |
name: Check interface versions | |
runs-on: macos-latest | |
steps: | |
- name: Check out Git repository | |
uses: actions/checkout@v4 | |
- name: Install Lua runtime # May be overkill, but removes the need for complex shell scripting | |
uses: evo-lua/evo-setup-action@main | |
with: | |
version: 'v0.0.20' | |
- name: Check for outdated interface versions | |
run: .github/check-interface-versions.sh |