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 e3645dd16d792dc1461bba740dab47338596a26a to 23ff15729ef2fc348714a3bb66d2f655ca9066f2 #447
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@v4 | |
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 |