Bump ubuntu from 6d7b5d3
to a6d2b38
(#32)
#67
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 }} |