Skip to content

typegen 0.6.0

typegen 0.6.0 #122

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: Python application
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Task
uses: arduino/setup-task@v1
with:
version: 3.x
- name: Set up Python versions
uses: actions/setup-python@v4
with:
python-version: |
3.9
3.10
3.11
3.12
- name: Install Ruff
run: |
pipx install ruff==0.1.5
- name: Lint Test
run: |
task lint
- name: Install poetry
uses: abatilo/actions-poetry@v2
- name: Run tests
run: |
task test