Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

👷 ci: add lint-and-fmt workflow (#22) #38

👷 ci: add lint-and-fmt workflow (#22)

👷 ci: add lint-and-fmt workflow (#22) #38

Workflow file for this run

name: Unit Test
on:
push:
branches: [main]
pull_request:
merge_group:
workflow_dispatch:
jobs:
unit-test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
architecture: ["x64"]
name: Python ${{ matrix.python-version }} on ${{ matrix.architecture }} unit test
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install poetry
run: pipx install poetry
- name: Install python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
architecture: ${{ matrix.architecture }}
cache: "poetry"
- name: Install just
uses: extractions/setup-just@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Install dependencies
run: |
poetry install
- name: unit test
run: |
just ci-test