You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I already added some of our well tested OAuth2 Client/Credential Flow Code from another project.
We just need to use it. Testing the auth will be harder than implementing it.
Copy file name to clipboardexpand all lines: .github/workflows/dev_test.yml
+3-3
Original file line number
Diff line number
Diff line change
@@ -2,14 +2,14 @@ name: "Test Dev Environment"
2
2
# Checks that the dev environment (tox -e dev) can be set up.
3
3
# This might not work, if different linting/testing envs refer to different versions of the same lib (e.g. typing-extensions).
4
4
# Different versions of the same package might work for isolated specific envs (only linting, only testing...) but the dev environment inherits from all of them.
5
-
on: [push, pull_request]
5
+
on: [push, pull_request]
6
6
jobs:
7
7
check:
8
8
runs-on: ${{ matrix.os }}
9
9
strategy:
10
10
matrix:
11
-
python-version: ["3.11", "3.12"]
12
-
os: [ubuntu-latest]
11
+
python-version: ["3.11", "3.12"]
12
+
os: [ubuntu-latest]
13
13
steps:
14
14
- uses: actions/checkout@v4
15
15
- name: Set up Python ${{ matrix.python-version }}
0 commit comments