This repository has been archived by the owner on Aug 1, 2024. It is now read-only.
build(deps): Bump peter-evans/create-or-update-comment from 83d7ae329db28c00a7f6909acb9081cfe31244ee to 71345be0265236311c031f5c7866368bd1eff043 #516
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
# Assorted quality checks for PRs. | |
name: Quality checks | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: | |
- '**' | |
jobs: | |
run_ci: | |
runs-on: ubuntu-20.04 | |
env: | |
DEVSTACK_WORKSPACE: /tmp | |
SHALLOW_CLONE: 1 | |
strategy: | |
matrix: | |
python-version: | |
- '3.8' | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v4 | |
- name: setup python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Test Makefile | |
run: make selfcheck | |
- name: Install Python dependencies | |
run: make requirements | |
- name: Test that docs build without errors | |
run: make docs |