Refactor calculation of annualized_respondents_ferc714 #1127
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: 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 |