-
Notifications
You must be signed in to change notification settings - Fork 49
56 lines (41 loc) · 1.21 KB
/
main.yml
File metadata and controls
56 lines (41 loc) · 1.21 KB
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
name: Main
on:
push:
branches:
- master
pull_request:
jobs:
docker-library-linux:
name: Test on linux
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
fetch-depth: 1
- name: Clone Docker official images
run: git clone --depth 1 https://github.com/docker-library/official-images.git ~/official-images
- name: Test
run: ./.ci/test.sh
docker-library-wincore2022:
name: Test on windows server core 2022
runs-on: windows-2022
steps:
- name: Check out code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
fetch-depth: 1
- name: Test
run: .\.ci\test.ps1 -target 'servercore-ltsc2022'
shell: powershell
docker-library-wincore2025:
name: Test on windows server core 2025
runs-on: windows-2025
steps:
- name: Check out code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
fetch-depth: 1
- name: Test
run: .\.ci\test.ps1 -target 'servercore-ltsc2025'
shell: powershell