Skip to content
This repository has been archived by the owner on Jan 31, 2025. It is now read-only.

Only run CI on lowest Python version #65

Only run CI on lowest Python version

Only run CI on lowest Python version #65

Workflow file for this run

name: ci
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ${{ matrix.os }}
env:
PYTHONIOENCODING: utf-8
strategy:
matrix:
os: [windows-latest, macos-latest, ubuntu-latest]
python-version: ['3.9']
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
cache-dependency-path: |
pyproject.toml
- name: Install main
shell: bash
run: |
pip install .[test]
- name: Lint
shell: bash
run: |
make lint
- name: Mypy
shell: bash
run: |
make mypy
- name: Test
shell: bash
run: |
make test
- name: Install from dist
shell: bash
run: |
make build
pip install dist/labelme_toolkit-*.whl