SNOW-1797964: Clean up references from github workflows #201
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: Run All workflows [snowpark_checkpoints_collector] | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- "**" | |
- "!snowpark-checkpoints-validators/**" | |
- "!snowpark-checkpoints-configuration/**" | |
- "!snowpark-checkpoints-hypothesis/**" | |
- "!Demos/**" | |
pull_request: | |
branches: "**" | |
paths: | |
- "**" | |
- "!snowpark-checkpoints-validators/**" | |
- "!snowpark-checkpoints-configuration/**" | |
- "!snowpark-checkpoints-hypothesis/**" | |
- "!Demos/**" | |
workflow_call: | |
permissions: | |
contents: read | |
pull-requests: write | |
jobs: | |
lint: | |
name: Static analysis and linting snowpark-checkpoints-collector | |
uses: ./.github/workflows/collectors-lint.yml | |
build: | |
needs: lint | |
name: Build wheels snowpark-checkpoints-collector | |
uses: ./.github/workflows/collectors-use-build-wheels.yml | |
secrets: inherit | |
test: | |
needs: build | |
name: Run all tests snowpark-checkpoints-collector | |
uses: ./.github/workflows/collectors-use-tests_all.yml | |
secrets: inherit | |
artifact: | |
needs: test | |
name: Artifact package snowpark-checkpoints-collector | |
uses: ./.github/workflows/collectors-use-set-artifacts.yml | |
secrets: inherit | |
with: | |
artifact-name: snowpark-checkpoints-collectors |