-
Notifications
You must be signed in to change notification settings - Fork 83
46 lines (40 loc) · 1006 Bytes
/
main.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
name: CI
on:
push:
paths-ignore:
- '*.md'
pull_request:
paths-ignore:
- '*.md'
workflow_dispatch:
paths-ignore:
- '*.md'
jobs:
alpine_x64:
container:
image: alpine
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: apk update && apk add bash zsh
- uses: ./.github/actions/test ash
debian_x64:
container:
image: debian
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
# - run: apt-get update && apt-get install -y busybox zsh
- run: apt-get update && apt-get install -y zsh
# - run: ln -sf /bin/busybox /bin/ash
- uses: ./.github/actions/test
arch_x64:
container:
image: archlinux
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
# - run: pacman -Sy --noconfirm busybox zsh which
- run: pacman -Sy --noconfirm zsh which
# - run: ln -sf /bin/busybox /bin/ash
- uses: ./.github/actions/test