Use verify-changed-files to verify lexer.jl #2
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: Lexer up-to-date | |
on: | |
push: | |
branches: ['master', 'installPackage'] | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
check-lexer: | |
runs-on: ${{ matrix.os }} | |
timeout-minutes: 30 | |
strategy: | |
fail-fast: false | |
matrix: | |
julia-version: ['1.6'] | |
julia-arch: ['x64'] | |
os: ['ubuntu-latest'] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: "Set up Julia" | |
uses: julia-actions/setup-julia@v2 | |
with: | |
version: ${{ matrix.julia-version }} | |
arch: ${{ matrix.julia-arch }} | |
- name: Cache Julia | |
uses: julia-actions/cache@v2 | |
- name: Install dependencies | |
run: julia --project=bin/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()' | |
- name: Build Lexer | |
run: julia --project=bin/ -e 'include("bin/generate_lexer.jl")' | |
- name: Check for changes in src/lexer.jl | |
id: changed-lexer | |
uses: tj-actions/verify-changed-files@v20 | |
with: | |
files: | | |
src/lexer.jl | |
- name: Archive changed lexer.jl | |
if: steps.changed-lexer.outputs.files_changed == 'true' | |
uses: actions/upload-artifact@v4 | |
with: | |
name: lexer.jl | |
path: ${{ steps.verify-changed-files.outputs.changed_files }} | |
- name: Fail if lexer.jl isn't up-to-date | |
if: steps.changed-lexer.outputs.files_changed == 'true' | |
run: | | |
echo "::error file=src/lexer.jl,line=1::Generated lexer.jl outdated." | |
exit 1 |