Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
hvalev committed Jul 16, 2023
2 parents db93ecd + 960fcb8 commit 9e7238a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
steps:
- uses: actions/checkout@master
- name: Setup Python Matrix
uses: actions/setup-python@v1
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand All @@ -30,7 +30,7 @@ jobs:
run: |
pytest --cov=./py_markdown_table/ ./tests/tests.py --cov-report=xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
uses: codecov/codecov-action@v3
with:
fail_ci_if_error: true
build:
Expand All @@ -40,7 +40,7 @@ jobs:
steps:
- uses: actions/checkout@master
- name: Setup Python 3.9
uses: actions/setup-python@v1
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Install dependencies
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
steps:
- uses: actions/checkout@master
- name: Setup Python Matrix
uses: actions/setup-python@v1
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand All @@ -30,6 +30,6 @@ jobs:
run: |
pytest --cov=./py_markdown_table/ ./tests/tests.py --cov-report=xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
uses: codecov/codecov-action@v3
with:
fail_ci_if_error: true

0 comments on commit 9e7238a

Please sign in to comment.