Update stale workflow to include any-of-labels instead of only-labels #134
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
name: Tests | |
on: | |
push: | |
branches: | |
- master | |
paths-ignore: | |
- ".github/ISSUE_TEMPLATE/**" | |
- ".github/*.yml" | |
- ".gitignore" | |
- ".readthedocs.yaml" | |
- "README.rst" | |
pull_request: | |
paths-ignore: | |
- ".github/ISSUE_TEMPLATE/**" | |
- ".github/*.yml" | |
- ".gitignore" | |
- ".readthedocs.yaml" | |
- "README.rst" | |
permissions: | |
contents: read | |
jobs: | |
build-package: | |
runs-on: ubuntu-latest | |
concurrency: | |
group: ${{ github.event_name }}-${{ github.workflow }}-${{ github.ref_name }}-build-pkg | |
cancel-in-progress: true | |
timeout-minutes: 20 | |
container: | |
image: ghcr.io/thombashi/python-ci:3.11 | |
steps: | |
- uses: actions/checkout@v4 | |
- run: make build | |
unit-test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"] | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
exclude: | |
- os: macos-latest | |
python-version: "3.7" | |
concurrency: | |
group: ${{ github.event_name }}-${{ github.workflow }}-${{ github.ref_name }}-ut-${{ matrix.os }}-${{ matrix.python-version }} | |
cancel-in-progress: true | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache-dependency-path: | | |
setup.py | |
**/*requirements.txt | |
tox.ini | |
- run: make setup-ci | |
- name: Run tests | |
if: matrix.os != 'windows-latest' | |
run: tox -e py | |
env: | |
PYTEST_DISCORD_WEBHOOK: ${{ secrets.PYTEST_DISCORD_WEBHOOK }} | |
- name: Run tests | |
if: matrix.os == 'windows-latest' | |
run: | | |
python -m pip install --upgrade .[test] -c constraints.txt | |
pytest test | |
installer: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-20.04, ubuntu-22.04] | |
concurrency: | |
group: ${{ github.event_name }}-${{ github.workflow }}-${{ github.ref_name }}-installer-${{ matrix.os }} | |
cancel-in-progress: true | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run the installer script | |
run: curl -sSL https://raw.githubusercontent.com/thombashi/sqlitebiter/master/scripts/installer.sh | sudo bash -x |