Skip to content

Commit deb20f5

Browse files
committed
Create docker-image.yml
1 parent 2f3058c commit deb20f5

File tree

3 files changed

+18
-14
lines changed

3 files changed

+18
-14
lines changed

Diff for: .github/workflows/docker-image.yml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Run Tests
2+
3+
on:
4+
pull_request:
5+
branches: [ master ]
6+
7+
jobs:
8+
9+
build:
10+
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- uses: actions/checkout@v2
15+
- name: Install deps
16+
run: sudo apt-get install curl jq socat make
17+
- name: Run the test suite
18+
run: make test

Diff for: .travis.yml

-13
This file was deleted.

Diff for: Makefile

-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,6 @@ shellcheck :
5252

5353
readme : $(PROGRAM)
5454
@ printf '<!---\nThis README file is generated. Changes will be overwritten.\n-->\n' > README.md
55-
@ printf '[![Build Status](https://travis-ci.org/whiteinge/ok.sh.svg?branch=master)](https://travis-ci.org/whiteinge/ok.sh)\n\n' >> README.md
5655
OK_SH_MARKDOWN=1 ./$(PROGRAM) help >> README.md
5756

5857
.PHONY: preview

0 commit comments

Comments
 (0)