-
Notifications
You must be signed in to change notification settings - Fork 9
87 lines (80 loc) · 2.21 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
name: "Testing"
on:
push: {}
jobs:
test_simple:
strategy:
matrix:
os:
- ubuntu-20.04
- ubuntu-22.04
- macos-13
- macos-12
- macos-11
- windows-2022
- windows-2019
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
shell: bash
run: head -n8 public/actions-download-file
test_filename:
strategy:
matrix:
os:
- ubuntu-20.04
- ubuntu-22.04
- macos-13
- macos-12
- macos-11
- windows-2022
- windows-2019
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
shell: bash
run: head -n8 public/api-result.json
test_output_filename:
strategy:
matrix:
os:
- ubuntu-20.04
- ubuntu-22.04
- macos-13
- macos-12
- macos-11
- windows-2022
- windows-2019
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 (Linux/macOS)
shell: bash
run: "[ 'actions-download-file' = '${{ steps.downloadfile.outputs.filename }}' ] && echo 'OK' || exit 1"