Skip to content

Add changelog entry for v0.2.0 #10

Add changelog entry for v0.2.0

Add changelog entry for v0.2.0 #10

Workflow file for this run

# Linting and style checks with GitHub Actions
name: check
# Only build PRs and the main branch. Pushes to branches will only be built
# when a PR is opened.
on:
pull_request:
push:
branches:
- main
###############################################################################
jobs:
format:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install requirements
run: python -m pip install -r env/requirements-style.txt
- name: Install Burocrata from this repository
run: python -m pip install .
- name: List installed packages
run: python -m pip freeze
- name: Run linting tools
run: make check-format
style:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install requirements
run: python -m pip install -r env/requirements-style.txt
- name: List installed packages
run: python -m pip freeze
- name: Run linting tools
run: make check-style