Skip to content

Bump certifi from 2018.8.24 to 2023.7.22 #533

Bump certifi from 2018.8.24 to 2023.7.22

Bump certifi from 2018.8.24 to 2023.7.22 #533

Workflow file for this run

name: Python application
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install Cython --install-option="--no-cython-compile"
pip install -r requirements.txt
- name: Test with pytest
env:
GITHUB_NAME: name
GITHUB_EMAIL: [email protected]
run: |
git config --global user.email ${GITHUB_EMAIL}
git config --global user.name ${GITHUB_NAME}
pip install pytest
pytest