We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 71388dd commit 27a490cCopy full SHA for 27a490c
.github/workflows/integ-tests.yml
@@ -26,7 +26,7 @@ jobs:
26
- name: run integration tests
27
run: make integ-tests-with-docker-x86-64
28
integ-tests-arm64:
29
- runs-on: ubuntu-latest
+ runs-on: macos-14
30
environment:
31
name: integ-tests
32
steps:
.github/workflows/single-test.yml
@@ -0,0 +1,27 @@
1
+name: Single test
2
+
3
+on:
4
+ workflow_dispatch:
5
+ push:
6
+ branches:
7
+ - single-test
8
9
+jobs:
10
+ read-file:
11
+ name: Read file and print
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - name: Download file
15
+ uses: actions/download-artifact@v4
16
+ with:
17
+ name: homework_pre
18
+ - shell: bash
19
+ run: |
20
+ expr 3 + 7 > math-homework.txt
21
+ - name: Upload math result for job 1
22
+ uses: actions/upload-artifact@v4
23
24
25
+ path: math-homework.txt
+ write-file:
0 commit comments