Skip to content

Commit 263c60f

Browse files
committed
workflows: Ditch TravisCI and embrace GitHub Actions
1 parent 6817600 commit 263c60f

File tree

2 files changed

+23
-19
lines changed

2 files changed

+23
-19
lines changed

.github/workflows/build.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: build
2+
on: [push, pull_request]
3+
jobs:
4+
build:
5+
runs-on: ubuntu-latest
6+
strategy:
7+
fail-fast: false
8+
matrix:
9+
image-tag:
10+
- 37
11+
- 38
12+
- 39
13+
- 310
14+
container: thumbororg/thumbor-test:${{ matrix.image-tag }}
15+
steps:
16+
- name: Checkout repository
17+
uses: actions/checkout@v2
18+
- name: Setup
19+
run: make setup
20+
- name: Run unit tests
21+
run: make unit
22+
- name: Run integration tests
23+
run: make integration

.travis.yml

Lines changed: 0 additions & 19 deletions
This file was deleted.

0 commit comments

Comments
 (0)