Make an API key name of "-" not actually fetch a key #247
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/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/* |