Fixed bug with ScanImage's parse_metadata so that it works properly when hStackManager is disabled #107
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: Deploy PR Tests | |
on: | |
workflow_dispatch: | |
pull_request: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
update-testing-data: | |
uses: ./.github/workflows/update-testing-data.yml | |
secrets: | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
S3_GIN_BUCKET: ${{ secrets.S3_GIN_BUCKET }} | |
run-tests: | |
needs: update-testing-data | |
uses: ./.github/workflows/run-tests.yml | |
secrets: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
dev-tests: | |
needs: update-testing-data | |
uses: ./.github/workflows/dev-testing.yaml |