Skip to content

Commit

Permalink
build: add github action stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
jrdh committed Aug 30, 2023
1 parent 3d9bf40 commit dbab807
Show file tree
Hide file tree
Showing 3 changed files with 88 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/SUPPORT.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Support

## Documentation
- [data importer documentation](https://data-importer.readthedocs.io)

## Contact Us
- [Gitter](https://gitter.im/nhm-data-portal/lobby)
- [Email _[email protected]_](mailto:[email protected])
- [Twitter](https://twitter.com/nhm_data)
58 changes: 58 additions & 0 deletions .github/nhm-logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
21 changes: 21 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Tests

on:
push:
workflow_dispatch:

jobs:
test:
runs-on: ubuntu-latest

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

- name: Build images
run: docker-compose build

- name: Run tests
env:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
run: docker-compose run -e COVERALLS_REPO_TOKEN test

0 comments on commit dbab807

Please sign in to comment.