Skip to content

upgraded python version. #130

upgraded python version.

upgraded python version. #130

Workflow file for this run

name: ci-checks
on:
pull_request:
branches:
- "*"
env:
PROXYGEN_CLIENT_ID: ${{ secrets.PROXYGEN_CLIENT_ID }}
PROXYGEN_CLIENT_SECRET: ${{ secrets.PROXYGEN_CLIENT_SECRET }}
jobs:
build:
name: ci-checks
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install Python 3.13
uses: actions/setup-python@v4
with:
python-version: "3.13"
- name: install poetry
if: always()
run: pip install --upgrade pip && pip install poetry
- name: Install dependencies
if: always()
run: python -m poetry install
- name: Pytest
if: always()
run: make pytest-ci