Merge branch 'pgmemento-modernize' #604
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Sparrow continuous integration | |
on: | |
push: | |
branches: [main, develop] | |
pull_request: | |
branches: [main, develop] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v2 | |
# We had to remove submodule recursion due to changes in pgMemento | |
- name: Update submodules | |
run: git submodule update --init | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.9' | |
# Bundling | |
- name: Install software for local development | |
run: make && sudo make install-dev | |
- name: Run Sparrow cli tests | |
run: sparrow test cli | |
- name: Run Sparrow core tests | |
run: sparrow test | |
# - name: Run Sparrow integration tests | |
# run: sparrow test integration | |