Skip to content

chore: migrate to ruff, composite actions, uv #55

chore: migrate to ruff, composite actions, uv

chore: migrate to ruff, composite actions, uv #55

Workflow file for this run

# name: build
# on:
# push: ~
# pull_request: ~
# workflow_dispatch: ~
# jobs:
# lint:
# runs-on: ubuntu-latest
# steps:
# - uses: justintime50/composite-actions/bootstrap-python@v1
# with:
# python-version: '3.14'
# - run: just install lint
# test:
# runs-on: ubuntu-latest
# strategy:
# matrix:
# pythonversion: ['3.10', '3.11', '3.12', '3.13', '3.14']
# steps:
# - uses: justintime50/composite-actions/bootstrap-python@v1
# with:
# python-version: ${{ matrix.pythonversion }}
# - run: just install coverage
# coverage:
# if: github.ref == 'refs/heads/main'
# runs-on: ubuntu-latest
# steps:
# - uses: justintime50/composite-actions/bootstrap-python@v1
# with:
# python-version: '3.14'
# - run: just install coverage
# - uses: codecov/codecov-action@v5
# with:
# token: ${{ secrets.CODECOV_TOKEN }}