Skip to content

Commit b29d924

Browse files
committed
test ci on actions
1 parent 91bbf52 commit b29d924

File tree

3 files changed

+22
-5
lines changed

3 files changed

+22
-5
lines changed

.github/workflows/test_action.yaml

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
name: Test Action
2-
on: [push, pull_request]
2+
on:
3+
push:
4+
branches:
5+
- "main"
6+
- "*.*"
7+
tags:
8+
- "v*"
9+
pull_request:
10+
# Allow manual runs through the web UI
11+
workflow_dispatch:
12+
13+
concurrency:
14+
group: ${{ github.workflow }}-${{ github.ref }}
15+
cancel-in-progress: true
316

417
jobs:
518
generate_data:

.github/workflows/test_bench.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
11
name: Run the update test suite
22
on:
33
push:
4-
branches: main
4+
branches:
5+
- "main"
6+
- "*.*"
7+
tags:
8+
- "v*"
59
pull_request:
6-
branches: main
7-
# On demand
10+
# Allow manual runs through the web UI
811
workflow_dispatch:
912

1013
jobs:
@@ -13,7 +16,6 @@ jobs:
1316
steps:
1417
- name: Checkout
1518
uses: actions/checkout@v6
16-
1719
- uses: prefix-dev/[email protected]
1820
with:
1921
pixi-version: "v0.49.0"

run_spec0_update.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,9 @@
3535
)
3636

3737
project_data = read_toml(toml_path)
38+
print(project_data)
3839
schedule_data = read_schedule(schedule_path)
40+
print(schedule_data)
3941
update_pyproject_toml(project_data, schedule_data)
4042

4143
write_toml(toml_path, project_data)

0 commit comments

Comments
 (0)