Update README #24
Workflow file for this run
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: pytest | |
on: ['push'] | |
jobs: | |
pytest: | |
runs-on: ubuntu-22.04 | |
strategy: | |
matrix: | |
python-version: ['3.8', '3.11'] | |
services: | |
postgres: | |
image: postgres:latest | |
env: | |
POSTGRES_PASSWORD: postgres_password | |
ports: | |
- 5432:5432 | |
options: >- | |
--health-cmd pg_isready | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install package | |
run: | | |
python3 -m pip install --upgrade pip setuptools | |
python3 -m pip install psycopg2-binary | |
python3 -m pip install -e . | |
python3 -m pip install -e .[pytest] | |
- name: Setup environment file | |
run: | | |
echo "SECRET_KEY=thisisnotaverysecretkey" >> $GITHUB_ENV | |
echo "DATABASE=postgresql://postgres:postgres_password@localhost/django_datacite" >> $GITHUB_ENV | |
- name: Run pytest | |
run: | | |
pytest --cov | |
- name: Run coveralls | |
uses: coverallsapp/github-action@v2 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
flag-name: ${{ matrix.python-version }} | |
parallel: true | |
coveralls: | |
needs: pytest | |
runs-on: ubuntu-latest | |
steps: | |
- name: Run coveralls finish | |
uses: coverallsapp/github-action@v2 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
parallel-finished: true | |
carryforward: "3.7,3.11" |