Skip to content

Commit

Permalink
Add test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
jrdh committed Mar 24, 2022
1 parent e0ae83b commit efc14c0
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Tests

on:
push:
workflow_dispatch:

jobs:
test:
runs-on: ubuntu-18.04

steps:
- name: Checkout source code
uses: actions/checkout@v2

- name: Build images
run: docker-compose build

- name: Run tests
run: docker-compose run ckan

- name: Run coveralls
env:
COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: docker-compose run -e COVERALLS_REPO_TOKEN ckan coveralls --service=github

0 comments on commit efc14c0

Please sign in to comment.