Skip to content

up python version

up python version #5

name: Test command line app installed from local
on:
workflow_dispatch:
push:
branches_ignore:
- "main"
- "release/*"
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python 3.8
uses: actions/setup-python@v3
with:
python-version: "3.8"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
pip install .
- name: Test with pytest
run: |
python -m pytest tests/test_command_line.py