Skip to content

Commit

Permalink
chore(ci): Add workflow for backend tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Grohden committed Aug 5, 2020
1 parent 2b5a87b commit 4d092c4
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@

name: CI

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Run backend tests
run: cd backend && ./gradlew test
env:
HASH_KEY_SECRET: ${{secrets.HASH_KEY_SECRET}}
PERSONAL_ACCESS_TOKEN: ${{secrets.PERSONAL_ACCESS_TOKEN}}

0 comments on commit 4d092c4

Please sign in to comment.