44 lines
1.2 KiB
YAML
44 lines
1.2 KiB
YAML
name: CI
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
workflow_dispatch:
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
|
|
cancel-in-progress: true
|
|
jobs:
|
|
run-pre-commit:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- run: pipx run pre-commit run --all-files --show-diff-on-failure
|
|
build:
|
|
strategy:
|
|
matrix:
|
|
os:
|
|
- ubuntu
|
|
- macos
|
|
- windows
|
|
fail-fast: false
|
|
runs-on: ${{ matrix.os }}-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- run: pipx install poetry
|
|
- uses: actions/setup-python@v5
|
|
with:
|
|
python-version: "3.11"
|
|
cache: poetry
|
|
check-latest: true
|
|
- run: poetry install --only=main,nuitka --sync --no-root --extras=non-termux --no-interaction
|
|
- run: poetry run --no-interaction python -m nuitka --onefile --python-flag='-m' --prefer-source-code --assume-yes-for-downloads proxy_scraper_checker
|
|
- uses: actions/upload-artifact@v4
|
|
with:
|
|
name: artifact-${{ matrix.os }}
|
|
path: |
|
|
config.toml
|
|
proxy_scraper_checker.bin
|
|
proxy_scraper_checker.exe
|
|
if-no-files-found: error
|