Skip to content

Commit

Permalink
Merge pull request #295 from 0hsn/chore/PkgUpd-20240404
Browse files Browse the repository at this point in the history
Chore: Package version update 2024-04-04
  • Loading branch information
0hsn authored May 1, 2024
2 parents 940dc5d + e2ea170 commit 51069e3
Show file tree
Hide file tree
Showing 5 changed files with 177 additions and 178 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/coverage-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4

- name: Set up Python 3.11.7
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: '3.11.7'
python-version: '3.11'
cache: 'pip'

- name: Install dependencies
Expand All @@ -28,7 +28,7 @@ jobs:
- name: Run tests
run: python -m pytest --cov=./chk --cov-report xml && coverage-lcov

- name: Coveralls github action
- name: Coveralls GitHub Action
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
Expand Down
9 changes: 4 additions & 5 deletions .github/workflows/test-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,19 +16,18 @@ jobs:
- ubuntu-20.04
- windows-latest
- windows-2019
py_ver: [3.11.0]

runs-on: ${{ matrix.os }}
if: ${{ ! github.event.pull_request.draft }}

steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up Python ${{ matrix.py_ver }}
uses: actions/setup-python@v4
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: '${{ matrix.py_ver }}'
python-version: '3.11'
cache: 'pip'

- name: Install dependencies
Expand Down
Loading

0 comments on commit 51069e3

Please sign in to comment.