Skip to content

Move distrobuilder guide #520

Move distrobuilder guide

Move distrobuilder guide #520

Workflow file for this run

name: Static analysis and build test
on:
- push
- pull_request
jobs:
test:
strategy:
fail-fast: false
matrix:
python:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
runs-on: ubuntu-latest
steps:
- name: Install python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python }}
- name: Checkout code
uses: actions/checkout@v2
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y man2html-base
- name: Install Python dependencies
run: |
pip3 install -r requirements.txt
pip3 install pycodestyle
- name: Static analysis
run: pycodestyle generate
- name: Build website
run: ./generate