Skip to content

Update release sentence #120

Update release sentence

Update release sentence #120

Workflow file for this run

name: test
on:
pull_request:
jobs:
test-pep8:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install tox
run: sudo apt install -y tox
- name: Run tox pep8 env
run: tox run -e pep8
test-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install tox
run: sudo apt install -y tox
- name: Run tox docs env
run: tox run -e docs
test-vale:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install docutils
run: sudo apt-get install -y docutils
- uses: errata-ai/vale-action@v2.1.1
with:
vale_flags: "--glob=!.github/*"