59 lines
1 KiB
YAML
59 lines
1 KiB
YAML
# 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/action@v3.0.1
|
|
|
|
- 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/*
|