Merge pull request #925 from bquan0/newer-hdf5 #8
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: Test against MOAB master on PR merge | |
on: | |
# allows us to run workflows manually | |
workflow_dispatch: | |
push: | |
branches: | |
- develop | |
paths-ignore: | |
- '.github/workflows/docker_publish.yml' | |
- '.github/workflows/linux_build_test.yml' | |
- '.github/workflows/mac_build_test.yml' | |
- '.github/workflows/windows_build_test.yml' | |
- '.github/workflows/housekeeping.yml' | |
- '.github/workflows/changelog_test.yml' | |
- 'CI/**' | |
- 'doc/**' | |
jobs: | |
build-dependency-and-test-img: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: use upstream test composite action | |
uses: ./.github/actions/upstream-test | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
moab_version: master |