From fa996b461b81b6d73f03965cbbd06c8aa18993e2 Mon Sep 17 00:00:00 2001 From: Jess Frazelle Date: Mon, 18 May 2020 10:38:16 -0700 Subject: [PATCH] update Signed-off-by: Jess Frazelle --- .github/workflows/make-test.yml | 12 ++++++++++++ .travis.yml | 8 -------- README.md | 4 ++-- 3 files changed, 14 insertions(+), 10 deletions(-) create mode 100644 .github/workflows/make-test.yml delete mode 100644 .travis.yml diff --git a/.github/workflows/make-test.yml b/.github/workflows/make-test.yml new file mode 100644 index 0000000..3b98afc --- /dev/null +++ b/.github/workflows/make-test.yml @@ -0,0 +1,12 @@ +on: + push +name: make test +jobs: + test: + name: make test + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@master + - name: make test + run: make test + shell: bash diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 7dbd060..0000000 --- a/.travis.yml +++ /dev/null @@ -1,8 +0,0 @@ ---- - sudo: required - notifications: - email: true - services: - - docker - script: - - make test diff --git a/README.md b/README.md index 50ea7ef..d3ca715 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ ## dockerfiles -[![Travis CI](https://img.shields.io/travis/jessfraz/dockerfiles.svg?style=for-the-badge)](https://travis-ci.org/jessfraz/dockerfiles) +[![make test](https://github.com/jessfraz/dockerfiles/workflows/make%20test/badge.svg)](https://github.com/jessfraz/dockerfiles/actions?query=workflow%3A%22make+test%22+branch%3Amaster) This is a repo to hold various Dockerfiles for images I create. @@ -48,4 +48,4 @@ latest-versions Checks all the latest versions of the Dockerfile run Run a Dockerfile from the command at the top of the file (ex. DIR=telnet). shellcheck Runs the shellcheck tests on the scripts. test Runs the tests on the repository. -``` \ No newline at end of file +```