@@ -30,42 +30,42 @@ jobs:
30
30
- run : just typing
31
31
- run : just typing-nb
32
32
33
- # run-tests:
33
+ run-tests :
34
34
35
- # name: Run tests for ${{ matrix.os }} on ${{ matrix.python-version }}
36
- # runs-on: ${{ matrix.os }}
35
+ name : Run tests for ${{ matrix.os }} on ${{ matrix.python-version }}
36
+ runs-on : ${{ matrix.os }}
37
37
38
- # strategy:
39
- # fail-fast: false
40
- # matrix:
41
- # os: ['ubuntu-latest', 'macos-latest', 'windows-latest']
42
- # python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
38
+ strategy :
39
+ fail-fast : false
40
+ matrix :
41
+ os : ['ubuntu-latest', 'macos-latest', 'windows-latest']
42
+ python-version : ['3.9', '3.10', '3.11', '3.12', '3.13']
43
43
44
- # steps:
45
- # - uses: actions/checkout@v4
46
- # - uses: astral-sh/setup-uv@v6
47
- # with:
48
- # enable-cache: true
49
- # python-version: ${{ matrix.python-version }}
50
- # - name: Install just
51
- # uses: extractions/setup-just@v2
44
+ steps :
45
+ - uses : actions/checkout@v4
46
+ - uses : astral-sh/setup-uv@v6
47
+ with :
48
+ enable-cache : true
49
+ python-version : ${{ matrix.python-version }}
50
+ - name : Install just
51
+ uses : extractions/setup-just@v2
52
52
53
- # - if: matrix.os == 'ubuntu-latest'
54
- # run: |
55
- # sudo apt-get update
56
- # sudo apt-get install graphviz graphviz-dev
53
+ - if : matrix.os == 'ubuntu-latest'
54
+ run : |
55
+ sudo apt-get update
56
+ sudo apt-get install graphviz graphviz-dev
57
57
58
- # - name: Run tests, doctests, and notebook tests
59
- # shell: bash -l {0}
60
- # run: just test-cov
58
+ - name : Run tests, doctests, and notebook tests
59
+ shell : bash -l {0}
60
+ run : just test-cov
61
61
62
- # - name: Upload test coverage reports to Codecov with GitHub Action
63
- # uses: codecov/codecov-action@v5
62
+ - name : Upload test coverage reports to Codecov with GitHub Action
63
+ uses : codecov/codecov-action@v5
64
64
65
- # - name: Run tests with lowest resolution
66
- # if: matrix.python-version == '3.9' && matrix.os == 'ubuntu-latest'
67
- # run: just test-lowest
65
+ - name : Run tests with lowest resolution
66
+ if : matrix.python-version == '3.9' && matrix.os == 'ubuntu-latest'
67
+ run : just test-lowest
68
68
69
- # - name: Run tests with highest resolution
70
- # if: matrix.python-version == '3.13' && matrix.os == 'ubuntu-latest'
71
- # run: just test-highest
69
+ - name : Run tests with highest resolution
70
+ if : matrix.python-version == '3.13' && matrix.os == 'ubuntu-latest'
71
+ run : just test-highest
0 commit comments