Skip to content

Initial commit

Initial commit #1

Workflow file for this run

name: Python application
on: push
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Build docker image
run: docker build -t tink-ab-hw8 .
- name: Run tests
run: docker run -t tink-ab-hw8 pytest