Skip to content

Bump certifi from 2024.6.2 to 2024.7.4 #51

Bump certifi from 2024.6.2 to 2024.7.4

Bump certifi from 2024.6.2 to 2024.7.4 #51

Workflow file for this run

name: build-and-test
on:
push:
paths-ignore:
- '**.md'
branches:
- master
pull_request:
paths-ignore:
- '**.md'
branches:
- master
jobs:
build-ant-test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pipenv
make install-dev
- name: Build Docker images
run: make docker-build-all
- name: Run tests (using locally built Docker images)
run: make test-docker-compose