Skip to content

Commit 8a1ea1f

Browse files
committed
Move from Travis to GitHub Actions
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.
1 parent 457466d commit 8a1ea1f

File tree

2 files changed

+17
-4
lines changed

2 files changed

+17
-4
lines changed

.github/workflows/ci.yml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: CI
2+
on: push
3+
jobs:
4+
build:
5+
name: Build & test
6+
runs-on: ubuntu-latest
7+
8+
steps:
9+
- uses: actions/checkout@v2
10+
with:
11+
submodules: recursive
12+
13+
- uses: addnab/docker-run-action@v3
14+
with:
15+
options: -v ${{ github.workspace }}:/work
16+
image: bash:latest
17+
run: /work/test.sh

.travis.yml

-4
This file was deleted.

0 commit comments

Comments
 (0)