Skip to content

Commit

Permalink
Move from Travis to GitHub Actions
Browse files Browse the repository at this point in the history
We run the test inside a docker container, because the outer GHA runtime
seems to have some weird behaviour, and this gives us full control to
have a minimal & consistent Bash environment for testing.
  • Loading branch information
pimterry committed Jun 24, 2021
1 parent 15f870e commit 2d52cf1
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 4 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: CI
on: push
jobs:
build:
name: Test
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
with:
submodules: recursive

- uses: addnab/docker-run-action@v3
with:
options: -v ${{ github.workspace }}:/work
image: bash:latest
run: /work/test.sh
4 changes: 0 additions & 4 deletions .travis.yml

This file was deleted.

0 comments on commit 2d52cf1

Please sign in to comment.