Skip to content

Create Dockerfile and organize CLI #14

Create Dockerfile and organize CLI

Create Dockerfile and organize CLI #14

Workflow file for this run

name: CI
permissions:
contents: read
on:
push:
branches:
- main
- release/**
pull_request:
jobs:
tests:
name: "Run tests"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Make environment
run: make install-ci
- name: Run tests
run: |
source .venv/bin/activate
make tests