remove travis and fix ubuntu version

This commit is contained in:
Fco. Javier Delgado del Hoyo 2021-03-06 13:28:03 +01:00
parent 7e748dd82f
commit 150f905567
2 changed files with 8 additions and 13 deletions

View file

@ -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

View file

@ -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