Skip to content

Commit

Permalink
Setup Github Action to run automated tests
Browse files Browse the repository at this point in the history
  • Loading branch information
rprieto committed Jan 20, 2021
1 parent bc47a9e commit 5596988
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: test

on:
push:
pull_request:
branches: [master]

jobs:
test:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v2
-
name: Set up QEMU
uses: docker/setup-qemu-action@v1
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
-
name: Run tests
uses: docker/build-push-action@v2

0 comments on commit 5596988

Please sign in to comment.