Skip to content

fix: correct typo in publish workflow #31

fix: correct typo in publish workflow

fix: correct typo in publish workflow #31

Workflow file for this run

name: dev branch tests
on:
push:
branches: [dev]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: checkout repository
uses: actions/checkout@v4
- name: build image
uses: redhat-actions/buildah-build@v2
with:
containerfiles: ./Containerfile
image: pyromaniac
- name: run tests
run: |
podman run --rm \
--volume ./tests:/src/tests:ro \
--workdir /src \
--entrypoint "/usr/bin/python3" \
pyromaniac -m unittest