-
-
Notifications
You must be signed in to change notification settings - Fork 115
42 lines (41 loc) · 911 Bytes
/
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
name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
schedule:
- cron: "0 5 * * 2"
jobs:
test-ubuntu:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Test in Ubuntu
run: ./test.sh ubuntu
test-ubuntu-14-04:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Test in Ubuntu 14.04
run: ./test.sh ubuntu-14.04
test-alpine:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Test in Alpine
run: ./test.sh alpine
test-debian:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Test in Debian
run: ./test.sh debian
test-amazonlinux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Test in Amazonlinux
run: ./test.sh amazonlinux