Bump pygments from 2.14.0 to 2.15.0 in /docs #1232
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: BAR-API | |
on: | |
push: | |
pull_request: | |
schedule: | |
- cron: '0 0 * * *' | |
jobs: | |
test: | |
runs-on: ubuntu-22.04 | |
strategy: | |
matrix: | |
python-version: [3.8, 3.9, 3.10.11, 3.11] | |
services: | |
redis: | |
image: redis | |
options: >- | |
--health-cmd "redis-cli ping" | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 | |
ports: | |
- 6379:6379 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
sudo systemctl start mysql.service | |
python -m pip install --upgrade pip setuptools wheel | |
pip install -r requirements.txt | |
- name: Initial setup | |
run: ./config/init.sh | |
- name: Lint with flake8 | |
run: flake8 | |
- name: Pytest run by coverage | |
run: | | |
coverage run | |
coverage xml | |
env: | |
REDIS_HOST: localhost | |
REDIS_PORT: 6379 | |
CI: true | |
- name: "Upload coverage to Codecov" | |
uses: codecov/codecov-action@v2 | |
with: | |
fail_ci_if_error: false |