-
Notifications
You must be signed in to change notification settings - Fork 18
48 lines (48 loc) · 1.13 KB
/
test.yaml
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
name: Grawkit Test
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
test-gawk:
runs-on: ubuntu-latest
name: Test with GNU AWK
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Install dependencies
run: |
sudo apt-get update -y
sudo apt-get install -y gawk
- name: Run tests
run: |
make test AWK=gawk
test-busybox-awk:
runs-on: ubuntu-latest
name: Test with Busybox AWK
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Install dependencies
run: |
sudo apt-get update -y
sudo apt-get install -y busybox
- name: Run tests
run: |
make test AWK="busybox awk"
test-busybox-nawk:
runs-on: ubuntu-latest
name: Test with NAWK
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Install dependencies
run: |
sudo apt-get update -y
sudo apt-get install -y nawk
- name: Run tests
run: |
make test AWK=nawk