We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 058921c commit 251eacfCopy full SHA for 251eacf
1 file changed
.github/workflows/code-checks.yml
@@ -67,22 +67,23 @@ jobs:
67
runs-on: ubuntu-24.04
68
permissions:
69
contents: read
70
+
71
concurrency:
72
# https://github.community/t/concurrecy-not-work-for-push/183068/7
73
group: ${{ github.event_name == 'push' && github.run_number || github.ref }}-typechecking
74
cancel-in-progress: true
75
76
steps:
- - name: Create virtual environment with Pixi
77
- uses: ./.github/actions/setup-pixi
78
- with:
79
- environment: "typing"
80
-
81
- name: Checkout
82
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
83
with:
84
fetch-depth: 0
85
+ - name: Create virtual environment with Pixi
+ uses: ./.github/actions/setup-pixi
+ with:
+ environment: "typing"
86
87
- name: Build pandas
88
run: |
89
pixi run \
0 commit comments