Skip to content

Commit 141ea57

Browse files
authored
Merge branch 'master' into eph/rate-limits
2 parents b33d860 + 942e814 commit 141ea57

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ jobs:
4949
# subscriptions@julialang
5050
# Tell them that the +alias is +githubtestbot
5151
- uses: julia-actions/julia-processcoverage@v1
52-
- uses: codecov/codecov-action@v1
52+
- uses: codecov/codecov-action@v5
5353
with:
54-
file: lcov.info
54+
files: lcov.info
55+
token: ${{ secrets.CODECOV_TOKEN }}

test/read_only_api_tests.jl

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,8 +97,10 @@ testuser = Owner(testsuite_username)
9797
else
9898
@test GitHub.check_membership(julweb, testuser; auth = auth)
9999
end
100-
101-
@test !GitHub.check_membership("JuliaLang", testuser; auth = auth, public_only=true)
100+
101+
# Some membership tests that only test public membership (and thus the tests don't require authentication)
102+
@test GitHub.check_membership("JuliaLang", Owner("StefanKarpinski"); auth = auth, public_only=true)
103+
@test !GitHub.check_membership("JuliaLang", Owner("julia-github-test-bot2"); auth = auth, public_only=true)
102104

103105
@test GitHub.isorg(julweb)
104106
@test !GitHub.isorg(testuser)

0 commit comments

Comments
 (0)