Skip to content

Commit

Permalink
Update CI (#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
tsutsu3 committed Feb 6, 2024
1 parent eca659f commit afe967f
Showing 1 changed file with 15 additions and 13 deletions.
28 changes: 15 additions & 13 deletions .github/workflows/github-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python 3.8
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: 3.8
- uses: pre-commit/action@v3.0.0
Expand All @@ -23,13 +23,13 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]

steps:
- name: Checkout source
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand All @@ -40,30 +40,32 @@ jobs:
run: |
pytest --cov=uc_micro --cov-report=xml --cov-report=term-missing
- name: Upload to Codecov
if: matrix.python-version == 3.7 && github.repository == 'tsutsu3/uc.micro-py'
uses: codecov/codecov-action@v3
if: matrix.python-version == 3.8 && github.repository == 'tsutsu3/uc.micro-py'
uses: codecov/codecov-action@v4
with:
name: uc.micro-py-pytests-py3.7
name: uc.micro-py-pytests-py3.8
flags: pytests
fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }}

publish:
name: Publish to PyPi
needs: [pre-commit, test]
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v3
- name: Set up Python 3.7
uses: actions/setup-python@v4
uses: actions/checkout@v4
- name: Set up Python 3.8
uses: actions/setup-python@v5
with:
python-version: 3.7
python-version: 3.8
- name: Build package
run: |
pip install build
python -m build
- name: Publish
uses: pypa/gh-action-pypi-publish@v1.8.5
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_KEY }}

0 comments on commit afe967f

Please sign in to comment.