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 c0693c580c7d90be586343f0d34bb8a3567f846c to cf8251698e3d53de4e69e4fd13cfd7abb2c230fd #463
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 |