Skip to content

Commit

Permalink
workflows: Ditch TravisCI and embrace GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
scorphus committed Jan 31, 2022
1 parent 28742dd commit becb80d
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 19 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
image-tag:
- 37
- 38
- 39
- 310
container: thumbororg/thumbor-test:${{ matrix.image-tag }}
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Setup
run: make setup
- name: Run unit tests
run: make unit
- name: Run integration tests
run: make integration
19 changes: 0 additions & 19 deletions .travis.yml

This file was deleted.

0 comments on commit becb80d

Please sign in to comment.