Skip to content

Add actions

Add actions #1

Workflow file for this run

name: Python application test
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.12
uses: actions/setup-python@v2
with:
python-version: 3.12
- name: Install dependencies
run: |
make dependency
- name: Test with pytest
run: |
make testing