Skip to content

first test at passing image for the image build template #4

first test at passing image for the image build template

first test at passing image for the image build template #4

Workflow file for this run

---
name: Build
on:
pull_request:
branches:
- main
permissions: {}
jobs:
build:
name: build
runs-on: ubuntu-latest
permissions:
packages: write
contents: read
steps:
- name: Checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: test
run: |
python -m unittest discover -s test -p '*_test.py'
- name: Build Docker image
uses: docker/build-push-action@74166686865cdc289a02f214871fb53447b73447 # v5.1.0
with:
context: .
push: false