Skip to content

Commit bf9c8a7

Browse files
check 376
1 parent 844b02a commit bf9c8a7

2 files changed

Lines changed: 27 additions & 3 deletions

File tree

.github/workflows/basic.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
name: Test crypt module
22

33
on:
4-
push:
5-
branches:
6-
- test-973
4+
# push:
5+
# branches:
6+
# - test-973
77
workflow_dispatch:
88

99
jobs:

0 commit comments

Comments
 (0)