Bump ubuntu from 1b8d8ff
to 6d7b5d3
(#31)
#65
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: Tests | |
on: | |
pull_request: | |
branches: | |
- main | |
- release-* | |
push: | |
branches: | |
- main | |
- release-* | |
jobs: | |
golden-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run tests | |
run: | | |
./run_tests.sh | |
action: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Run action | |
uses: ./ | |
id: run_action | |
with: | |
paths: "*" | |
paths-ignore: "*.md" | |
outputs: | |
has_changes: ${{ steps.run_action.outputs.has_changes }} |