Skip to content
Closed
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
6b9ba2a
Update to `codecov-action@v4`
CoolCat467 Feb 11, 2024
4ab573e
Revert to v3 and add note for alpine container
CoolCat467 Feb 13, 2024
b5e012a
Merge branch 'master' into codecov-v4
CoolCat467 Feb 13, 2024
25f467b
Don't let codecov search for coverage files
A5rocks Feb 13, 2024
95dd3fc
Revert attempt to work around codecov
A5rocks Feb 13, 2024
73b7482
Try one more workaround
A5rocks Feb 13, 2024
7a5f70b
Merge branch 'master' into codecov-v4
CoolCat467 Feb 17, 2024
591c967
Merge branch 'master' into codecov-v4
CoolCat467 Feb 20, 2024
a144bc4
Merge branch 'python-trio:master' into codecov-v4
CoolCat467 Mar 11, 2024
2474152
move coverage.xml to root dir and don't specify directory
jakkdl Mar 13, 2024
c806b20
Revert "move coverage.xml to root dir and don't specify directory"
jakkdl Mar 13, 2024
0432f99
Merge branch 'master' into codecov-v4
CoolCat467 Mar 13, 2024
387bdba
Add `verbose: true` to codecov action settings
CoolCat467 Mar 13, 2024
2685fec
Merge branch 'master' into codecov-v4
CoolCat467 Mar 29, 2024
21fdd91
Merge branch 'master' into codecov-v4
CoolCat467 Apr 6, 2024
bb7b36b
Try re-adding `directory`
CoolCat467 Apr 22, 2024
0c163d7
Merge branch 'master' into codecov-v4
CoolCat467 Apr 22, 2024
23596dd
Re-add more `directory` tags I missed
CoolCat467 Apr 22, 2024
558c721
More missing `directory` fields
CoolCat467 Apr 22, 2024
f644e98
Merge branch 'main' into codecov-v4
CoolCat467 Jul 12, 2024
bb5c52c
Merge branch 'main' into codecov-v4
jakkdl Aug 31, 2024
f910887
make alpine use v4
jakkdl Aug 31, 2024
bc12e65
Merge branch 'main' into codecov-v4
CoolCat467 Oct 21, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 11 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,12 +73,14 @@ jobs:
LSP: '${{ matrix.lsp }}'
LSP_EXTRACT_FILE: '${{ matrix.lsp_extract_file }}'
- if: always()
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
with:
directory: empty
working-directory: empty
token: 87cefb17-c44b-4f2f-8b30-1fff5769ce46
name: Windows (${{ matrix.python }}, ${{ matrix.arch }}${{ matrix.extra_name }})
flags: Windows,${{ matrix.python }}
verbose: true

Ubuntu:
name: 'Ubuntu (${{ matrix.python }}${{ matrix.extra_name }})'
Expand Down Expand Up @@ -129,12 +131,14 @@ jobs:
CHECK_FORMATTING: '${{ matrix.check_formatting }}'
NO_TEST_REQUIREMENTS: '${{ matrix.no_test_requirements }}'
- if: always()
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
with:
directory: empty
working-directory: empty
token: 87cefb17-c44b-4f2f-8b30-1fff5769ce46
name: Ubuntu (${{ matrix.python }}${{ matrix.extra_name }})
flags: Ubuntu,${{ matrix.python }}
verbose: true

macOS:
name: 'macOS (${{ matrix.python }})'
Expand Down Expand Up @@ -165,12 +169,14 @@ jobs:
- name: Run tests
run: ./ci.sh
- if: always()
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
with:
directory: empty
working-directory: empty
token: 87cefb17-c44b-4f2f-8b30-1fff5769ce46
name: macOS (${{ matrix.python }})
flags: macOS,${{ matrix.python }}
verbose: true

# run CI on a musl linux
Alpine:
Expand All @@ -190,12 +196,13 @@ jobs:
- name: Run tests
run: source .venv/bin/activate && ./ci.sh
- if: always()
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
with:
directory: empty
token: 87cefb17-c44b-4f2f-8b30-1fff5769ce46
name: Alpine
flags: Alpine,3.12
verbose: true

Cython:
name: "Cython"
Expand Down