Skip to content

Bump certifi from 2022.12.7 to 2023.7.22 (#75) #149

Bump certifi from 2022.12.7 to 2023.7.22 (#75)

Bump certifi from 2022.12.7 to 2023.7.22 (#75) #149

Workflow file for this run

name: Build
on:
pull_request:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: [3.7]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Build
run: |
./scripts/build.sh
env:
CI: 1
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}