Skip to content

Commit

Permalink
ci: attempt to fix test docker build
Browse files Browse the repository at this point in the history
  • Loading branch information
jspaezp committed Dec 8, 2024
1 parent 2e0a5bd commit 9841733
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,5 +43,9 @@ jobs:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: false

- name: Set up Docker Buildx
if: runner.os == 'Linux'
uses: docker/setup-buildx-action@v3
- name: Check Build
if: runner.os == 'Linux'
run: make build
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ build-sdist:
build-docker:
uv run --with build python -m build --wheel --outdir dist .
docker build -t $(DOCKER_IMAGE_NAME):$(DOCKER_IMAGE_TAG) .
docker run --rm -it $(DOCKER_IMAGE_NAME):$(DOCKER_IMAGE_TAG) mokapot --help
docker run --rm $(DOCKER_IMAGE_NAME):$(DOCKER_IMAGE_TAG) mokapot --help

pre-commit:
pre-commit run --all-files
Expand Down

0 comments on commit 9841733

Please sign in to comment.