diff --git a/.github/workflows/image.yml b/.github/workflows/image.yml index 5143bcb..64833a7 100644 --- a/.github/workflows/image.yml +++ b/.github/workflows/image.yml @@ -9,13 +9,18 @@ on: - "v*" jobs: - build: - runs-on: ubuntu-latest + test: + runs-on: ubuntu-20.04 steps: - name: Checkout the code uses: actions/checkout@v2 - - name: Test + - name: Test Bash scripts run: sudo apt-get -qq update && sudo apt-get install -y devscripts shellcheck && make test + build: + runs-on: ubuntu-20.04 + steps: + - name: Checkout the code + uses: actions/checkout@v2 # https://github.com/docker/setup-qemu-action - name: Set up QEMU uses: docker/setup-qemu-action@v1 diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 120a65f..0000000 --- a/.travis.yml +++ /dev/null @@ -1,10 +0,0 @@ -sudo: required -dist: trusty -language: bash - -before_script: - - sudo apt-get -qq update - - sudo apt-get install -y devscripts shellcheck - -script: - - make test