mirror of
https://github.com/miurahr/aqtinstall.git
synced 2025-12-16 20:27:05 +03:00
Some checks are pending
Check tox tests, lint and types / Check packaging 📦 (push) Waiting to run
CodeQL / Analyze (python) (push) Waiting to run
Publish Python 🐍 distributions 📦 to PyPI / Build and publish Python 🐍 distributions 📦 to PyPI (push) Waiting to run
Test on GH actions environment / test (binary, windows-latest, 3.12, 6.6.3) (push) Waiting to run
Test on GH actions environment / test (standard, ubuntu-latest, 3.12, 6.5.3) (push) Waiting to run
Test on GH actions environment / test (standard, ubuntu-latest, 3.12, 6.6.3) (push) Waiting to run
Test on GH actions environment / test (standard, ubuntu-latest, 3.12, 6.8.0) (push) Waiting to run
Test on GH actions environment / test (standard, ubuntu-latest, 3.12, 6.8.1) (push) Waiting to run
Test on GH actions environment / test (standard, windows-latest, 3.12, 6.5.3) (push) Waiting to run
Test on GH actions environment / test (standard, windows-latest, 3.12, 6.6.3) (push) Waiting to run
Test on GH actions environment / test (standard, windows-latest, 3.12, 6.7.3) (push) Waiting to run
Signed-off-by: Hiroshi Miura <miurahr@linux.com>
52 lines
1.4 KiB
YAML
52 lines
1.4 KiB
YAML
name: Check tox tests, lint and types
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
- releases/*
|
|
pull_request:
|
|
types:
|
|
- opened
|
|
- synchronize
|
|
- reopened
|
|
|
|
jobs:
|
|
check_document:
|
|
name: Check packaging 📦
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 20
|
|
fetch-tags: true
|
|
- name: Set up Python 3.12
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: '3.12'
|
|
- name: Install tools
|
|
run: |
|
|
pip install -U pip
|
|
pip install tox tox-gh-actions coveralls coverage[toml]
|
|
- name: Test
|
|
run: |
|
|
tox
|
|
coverage xml -o cobertura.xml
|
|
env:
|
|
PYTEST_ADDOPTS: --cov-config=pyproject.toml --cov --cov-append --verbose
|
|
- name: Upload Coverage
|
|
run: coveralls --service=github
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
- uses: actions/setup-java@v4
|
|
if: ( github.event_name == 'push' ) && ( github.ref == 'refs/heads/master' )
|
|
with:
|
|
distribution: 'temurin'
|
|
java-version: '21'
|
|
- name: Send coverage to codacy
|
|
if: ( github.event_name == 'push' ) && ( github.ref == 'refs/heads/master' )
|
|
run: |
|
|
java -jar ci/codacy-coverage-reporter.jar report -l Python -t ${PROJECT_TOKEN} -r cobertura.xml
|
|
env:
|
|
PROJECT_TOKEN: ${{ secrets.CODACY_PROJECT_TOKEN }}
|