mirror of
https://github.com/arsenetar/dupeguru.git
synced 2024-11-08 17:19:03 +00:00
66 lines
1.7 KiB
YAML
66 lines
1.7 KiB
YAML
# Workflow lints, and checks format in parallel then runs tests on all platforms
|
|
|
|
name: Default CI/CD
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
branches: [master]
|
|
|
|
jobs:
|
|
pre-commit:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Set up Python 3.12
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: "3.12"
|
|
- uses: pre-commit/action@v3.0.1
|
|
test:
|
|
needs: [pre-commit]
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
matrix:
|
|
os: [ubuntu-latest]
|
|
python-version: [3.7, 3.8, 3.9, "3.10", "3.11", "3.12"]
|
|
include:
|
|
- os: windows-latest
|
|
python-version: "3.12"
|
|
- os: macos-latest
|
|
python-version: "3.12"
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Set up Python ${{ matrix.python-version }}
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: ${{ matrix.python-version }}
|
|
- name: Install dependencies
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
pip install setuptools
|
|
pip install -r requirements.txt -r requirements-extra.txt
|
|
- name: Build python modules
|
|
run: |
|
|
python build.py --modules
|
|
- name: Run tests
|
|
run: |
|
|
pytest core hscommon
|
|
- name: Upload Artifacts
|
|
if: matrix.os == 'ubuntu-latest'
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: modules ${{ matrix.python-version }}
|
|
path: build/**/*.so
|
|
merge-artifacts:
|
|
needs: [test]
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Merge Artifacts
|
|
uses: actions/upload-artifact/merge@v4
|
|
with:
|
|
name: modules
|
|
pattern: modules*
|
|
delete-merged: true
|