Skip to content

Commit

Permalink
ci: Convert .travis.yml to GitHub Actions
Browse files Browse the repository at this point in the history
This converts most functionality, excluding Slack notifications, from
the Travis-CI.org configuration file into the GitHub Actions config.

Slack notifications will be taken up separately using the various
options available to us, and may result in a future pull request.
  • Loading branch information
floatingatoll committed Jul 22, 2021
1 parent 0cd58d0 commit 4f765c3
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 18 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/make-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: make-test

on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: docker/login-action@v1
with:
# GitHub.com > (this repo) > Settings > Secrets
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
- name: Run make test
run: |
make test
18 changes: 0 additions & 18 deletions .travis.yml

This file was deleted.

0 comments on commit 4f765c3

Please sign in to comment.