1 parent 844b02a commit bf9c8a7Copy full SHA for bf9c8a7
2 files changed
.github/workflows/basic.yml
@@ -0,0 +1,24 @@
1
+name: check latest
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - test-973
7
+ workflow_dispatch:
8
9
+jobs:
10
+ build:
11
+ runs-on: ubuntu-latest
12
13
+ steps:
14
+ - name: Checkout code
15
+ uses: actions/checkout@v6
16
17
+ - name: Clear cache
18
+ run: |
19
+ mv "${{ runner.tool_cache }}" "${{ runner.tool_cache }}.old"
20
+ mkdir -p "${{ runner.tool_cache }}"
21
+ - name: Set up python
22
+ uses: priya-kinthali/setup-python@test-version
23
+ with:
24
+ python-version: '3.13.7'
.github/workflows/test-crypt.yml
@@ -1,9 +1,9 @@
name: Test crypt module
on:
- push:
- branches:
- - test-973
+ # push:
+ # branches:
+ # - test-973
workflow_dispatch:
jobs:
0 commit comments