Skip to content

fix(contributors): sort contributors alphabetically #503

fix(contributors): sort contributors alphabetically

fix(contributors): sort contributors alphabetically #503

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
test:
if: "!startsWith(github.event.head_commit.message, 'Merge pull request')"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.8.x
- uses: actions/cache@v2
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Install dependencies
run: |
pip install poetry
poetry install
- name: Run checks
run: make check
env:
SECRET_KEY: secret
GITHUB_AUTH_TOKEN: secret
GITHUB_WEBHOOK_TOKEN: secret
DB_ENGINE: SQLite
- name: Publish code coverage report
uses: paambaati/[email protected]
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
with:
coverageCommand: make test-coverage-report-xml