Skip to content

Bump certifi from 2022.12.7 to 2024.7.4 in /requirements/1.1 #71

Bump certifi from 2022.12.7 to 2024.7.4 in /requirements/1.1

Bump certifi from 2022.12.7 to 2024.7.4 in /requirements/1.1 #71

Workflow file for this run

name: ci
on: ['push', 'pull_request']
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.8'
- name: Install poetry
run: curl -sSL https://install.python-poetry.org | python3 -
- name: Check pyproject.toml
run: |
versions=($(ls -1A .))
for version in "${versions[@]}"; do
pushd "${version}"
poetry check
popd
done
working-directory: ./requirements
- name: Run ShellCheck
uses: ludeeus/action-shellcheck@master