diff --git a/.github/workflows/ci-only.yml b/.github/workflows/ci-only.yml new file mode 100644 index 0000000..6f2dbd1 --- /dev/null +++ b/.github/workflows/ci-only.yml @@ -0,0 +1,26 @@ +name: ci-only + +on: [push, pull_request] + +jobs: + build: + strategy: + matrix: + go-version: [1.13.x] + os: [ubuntu-latest] + runs-on: ${{ matrix.os }} + steps: + - uses: actions/checkout@master + with: + fetch-depth: 1 + - name: Initial Setup + run: | + sudo apt-get install jq + - name: Validate Images + run: | + jq empty functions.json + jq empty store.json + jq empty templates.json + jq empty store-arm64.json + jq empty store-armhf.json + ./ci/function_images_check.sh \ No newline at end of file diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index a869a9f..0000000 --- a/.travis.yml +++ /dev/null @@ -1,12 +0,0 @@ -sudo: false - -install: - - sudo apt-get install jq - -script: - - jq empty functions.json - - jq empty store.json - - jq empty templates.json - - jq empty store-arm64.json - - jq empty store-armhf.json - - ./ci/function_images_check.sh diff --git a/README.md b/README.md index 10015bd..a1c5c40 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # OpenFaaS Function Store -[![Build Status](https://travis-ci.org/openfaas/store.svg?branch=master)](https://travis-ci.org/openfaas/store) +[![Build Status](https://github.com/openfaas/store/workflows/build/badge.svg?branch=master)](https://github.com/openfaas/store/actions) The Function Store is a curated index of OpenFaaS functions which have been tested by the community and chosen for their experience.