0.8.4 #242
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# SPDX-FileCopyrightText: 2021 Jeff Epler | |
# | |
# SPDX-License-Identifier: MIT | |
name: Test | |
on: | |
push: | |
pull_request: | |
release: | |
types: [published] | |
check_suite: | |
types: [rerequested] | |
jobs: | |
pre-commit: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: pre-commit | |
uses: pre-commit/[email protected] | |
- name: Make patch | |
if: failure() | |
run: git diff > ~/pre-commit.patch | |
- name: Upload patch | |
if: failure() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: patch | |
path: ~/pre-commit.patch | |
test-release: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.11 | |
- name: install deps | |
run: pip install -r requirements-dev.txt | |
- name: check types with mypy | |
run: make | |
- name: Build release | |
run: python -mbuild | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: dist | |
path: dist/* |