Skip to content

chore: Align coverage badge colors with GitLab. (#114) #31

chore: Align coverage badge colors with GitLab. (#114)

chore: Align coverage badge colors with GitLab. (#114) #31

Workflow file for this run

jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
cache: pip
python-version: ${{ matrix.python-version }}
- run: env | sort
- run: make dev-lint
- run: make lint-check
strategy:
matrix:
python-version:
- '3.8'
- '3.9'
- '3.10'
- '3.11'
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
cache: pip
python-version: ${{ matrix.python-version }}
- run: env | sort
- run: make dev-test
- run: make test
strategy:
matrix:
python-version:
- '3.8'
- '3.9'
- '3.10'
- '3.11'
consistency:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Git
run: |
git config --global user.name github-actions
git config --global user.email github-actions@github.com
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
cache: pip
python-version: ${{ matrix.python-version }}
- run: env | sort
- name: Install copier for template rendering
run: python -m pip install --user copier
- name: Generate the project with the default value
run: |
find . -maxdepth 1 | grep -vE "(\.|template|includes|\.git|copier\.yaml)$" | xargs -I {} rm -r {}
copier copy -d repo_host_type=gitlab.com -r HEAD -f . .
rm .copier-answers.yml
copier copy -r HEAD -f . .
rm .copier-answers.yml
- run: git diff
- run: git status --porcelain
- run: test -z "$(git status --porcelain)"
strategy:
matrix:
python-version:
- '3.8'
- '3.9'
- '3.10'
- '3.11'
name: CI
on:
pull_request:
types:
- opened
- synchronize
push:
branches:
- main