Skip to content

Avoid setup-java step on GH Actions if possible (#39) #136

Avoid setup-java step on GH Actions if possible (#39)

Avoid setup-java step on GH Actions if possible (#39) #136

Workflow file for this run

name: main
on: [push, pull_request]
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [3.7, 3.8, 3.9, '3.10', '3.11', '3.12', 'pypy-3.9']
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- uses: actions/setup-java@v3
with:
java-version: 17
distribution: temurin
if: matrix.os == 'windows-latest'
- run: pip install --upgrade tox
- run: tox -v -e py
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-python@v4
with:
python-version: '3.x'
- run: pip install --upgrade tox
- run: tox -v -e lint
cov:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-python@v4
with:
python-version: '3.x'
- run: pip install --upgrade tox coveralls
- run: tox -v -e cov
- run: coveralls --service=github
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
publish:
needs: [test, lint]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-python@v4
with:
python-version: '3.x'
- run: pip install --upgrade tox
- run: tox -v -e build
- uses: pypa/gh-action-pypi-publish@release/v1
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') && github.repository == 'renatahodovan/picireny'
with:
password: ${{ secrets.pypi_token }}
packages_dir: .tox/build/tmp/