-
-
Notifications
You must be signed in to change notification settings - Fork 117
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/dev' into parallel-pytest
Additionally, switch integration tests to use tox under the hood.
- Loading branch information
Showing
79 changed files
with
742 additions
and
860 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
--- | ||
name: docker-build-test | ||
on: | ||
workflow_dispatch: | ||
pull_request: | ||
|
||
jobs: | ||
pudl_docker_build: | ||
name: Test building the PUDL ETL Docker image | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: read | ||
id-token: write | ||
steps: | ||
- name: Checkout Repository | ||
uses: actions/checkout@v3 | ||
|
||
- name: Docker Metadata | ||
id: docker_metadata | ||
uses: docker/[email protected] | ||
with: | ||
images: catalystcoop/pudl-etl | ||
flavor: | | ||
latest=auto | ||
- name: Set up Docker Buildx | ||
uses: docker/[email protected] | ||
|
||
- name: Build image but do not push to Docker Hub | ||
uses: docker/[email protected] | ||
with: | ||
context: . | ||
file: docker/Dockerfile | ||
push: false | ||
cache-from: type=gha | ||
cache-to: type=gha,mode=max |
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
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
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
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
Oops, something went wrong.