diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 000000000..322bacb91 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,23 @@ + +name: CI + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: Build + run: | + ./autogen.sh + ./configure + make all + - name: Run tests + run: | + python3 ./travis/nasm-t.py run diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index a74ab8237..000000000 --- a/.travis.yml +++ /dev/null @@ -1,10 +0,0 @@ -language: c -os: - - linux -env: - - TR_ARCH=local -script: - - ./autogen.sh - - ./configure - - make all - - python3 ./travis/nasm-t.py run