Skip to content

Bring web scraping to the cloud to make it much faster #33

Bring web scraping to the cloud to make it much faster

Bring web scraping to the cloud to make it much faster #33

Workflow file for this run

name: Check
on: push
jobs:
black:
name: Black
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/setup-cached-python
with:
version: "3.10"
- name: Check files using the black formatter
run: black --check .
link:
name: Ruff linting
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/setup-cached-python
with:
version: "3.10"
- run: inv lint
build-version:
name: Build version
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: ./.github/actions/setup-cached-python
with:
version: "3.9"
- name: Bump the version number
run: inv update-build-number
- uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: Bump the build number