Skip to content

Add localization for the link in footer and for a navbar element #60

Add localization for the link in footer and for a navbar element

Add localization for the link in footer and for a navbar element #60

Workflow file for this run

name: CI
on:
- push
- pull_request
env:
SECRET_KEY: ${{ secrets.SECRET_KEY }}
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install poetry
make install
- name: Run linter and tests
run: |
make check
- name: Test & publish code coverage
uses: paambaati/[email protected]
if: github.ref_name == 'main'
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
with:
coverageCommand: make test-coverage
debug: true