Skip to content

CI/CD overhaul

CI/CD overhaul #1006

Workflow file for this run

name: test
on:
pull_request:
types: [opened, synchronize]
push:
branches: ['master']
workflow_dispatch:
jobs:
lint-and-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
fetch-tags: true
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install tox tox-gh-actions
- name: Execute tox envs
working-directory: ./python
run: tox -e lint -- --check --diff
- name: Execute tox envs
working-directory: ./python
run: tox -e type-check
analyze:
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
language: [ 'python' ]
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]
# Learn more about CodeQL language support at https://git.io/codeql-language-support
steps:
- name: Checkout repository
uses: actions/checkout@v2
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v1
with:
languages: ${{ matrix.language }}
# If you wish to specify custom queries, you can do so here or in a config file.
# By default, queries listed here will override any specified in a config file.
# Prefix the list here with "+" to use these queries and those in the config file.
# queries: ./path/to/local/query, your-org/your-repo/queries@main
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
uses: github/codeql-action/autobuild@v1
# ℹ️ Command-line programs to run using the OS shell.
# 📚 https://git.io/JvXDl
# ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
# and modify them (or add more) to build your code if your project
# uses a compiled language
#- run: |
# make bootstrap
# make release
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1
test:
needs: lint-and-check
runs-on: ubuntu-latest
strategy:
matrix:
config:
- py: '3.9'
dbr: dbr113
- py: '3.9'
dbr: dbr122
- py: '3.10'
dbr: dbr133
- py: '3.10'
dbr: dbr143
fail-fast: false
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
fetch-tags: true
- name: Set up Python ${{ matrix.config.py }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.config.py }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install tox
- name: Execute tox envs
working-directory: ./python
run: tox -e ${{ matrix.config.dbr }},coverage-report
- name: Publish test coverage
uses: codecov/codecov-action@v4
with:
fail_ci_if_error: true
files: ./python/coverage.xml
token: ${{ secrets.CODECOV_TOKEN }}