-
Notifications
You must be signed in to change notification settings - Fork 9
63 lines (56 loc) · 1.75 KB
/
test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
name: "Testing"
on:
push: {}
jobs:
test_simple:
strategy:
matrix:
os: [ubuntu-20.04, ubuntu-22.04]
name: "Test: Simple"
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: suisei-cn/actions-download-file@master
id: downloadfile
name: Download a file
with:
url: "[API Endpoint](https://api.github.com/repos/suisei-cn/actions-download-file)"
target: public/
auto-match: true
- name: Display the file
run: head -n8 public/actions-download-file
test_filename:
strategy:
matrix:
os: [ubuntu-20.04, ubuntu-22.04]
name: "Test: With the filename"
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: suisei-cn/actions-download-file@master
id: downloadfile
name: Download a file
with:
url: "[API Endpoint](https://api.github.com/repos/suisei-cn/actions-download-file)"
target: public/
auto-match: true
filename: api-result.json
- name: Display the file
run: head -n8 public/api-result.json
test_output_filename:
strategy:
matrix:
os: [ubuntu-20.04, ubuntu-22.04]
name: "Test: Check the output filename"
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: suisei-cn/actions-download-file@master
id: downloadfile
name: Download a file
with:
url: "[API Endpoint](https://api.github.com/repos/suisei-cn/actions-download-file)"
target: public/
auto-match: true
- name: Check output filename
run: "[ 'actions-download-file' = '${{ steps.downloadfile.outputs.filename }}' ] && echo 'OK' || exit 1"