Skip to content

deps: canonicalize --have, add --cached #65

deps: canonicalize --have, add --cached

deps: canonicalize --have, add --cached #65

Workflow file for this run

name: Build
on:
push:
branches:
- master
- main
- tmp-*
tags:
- v*
pull_request:
jobs:
honesty:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12"]
os: [macOS-latest, ubuntu-latest, windows-latest]
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
fetch-tags: true
- name: Set Up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install
run: |
make setup
pip install -U .
- name: Test
run: make test
- name: Lint
run: make lint
- name: Pessimist
run: make pessimist