consistency nit fixes #17
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
on: | |
pull_request: | |
paths: | |
- "Dockerfile" | |
jobs: | |
test: | |
name: Build Dockerfile | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout panther-analysis | |
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b #v4.1.4 | |
- uses: docker/setup-qemu-action@68827325e0b33c7199eb31dd4e31fbe9023e06e3 #v3.0.0 | |
- name: Set up Docker Buildx | |
id: buildx | |
uses: docker/setup-buildx-action@d70bba72b1f3fd22344832f00baa16ece964efeb #v3.3.0 | |
- name: Build Image | |
run: docker buildx build --load -f Dockerfile -t panther-analysis:latest . | |
- name: Test Image | |
run: | | |
docker run --rm -t panther-analysis:latest pipenv run panther_analysis_tool --version |