Skip to content

build(deps): bump certifi from 2024.2.2 to 2024.7.4 (#6) #45

build(deps): bump certifi from 2024.2.2 to 2024.7.4 (#6)

build(deps): bump certifi from 2024.2.2 to 2024.7.4 (#6) #45

Workflow file for this run

name: Test SDK
on: [push]
jobs:
compile:
runs-on: ubuntu-20.04
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Set up python
uses: actions/setup-python@v4
with:
python-version: 3.8
- name: Bootstrap poetry
run: |
curl -sSL https://install.python-poetry.org | python - -y --version 1.5.1
- name: Install dependencies
run: poetry install
- name: Compile
run: poetry run mypy .
test:
runs-on: ubuntu-20.04
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Set up python
uses: actions/setup-python@v4
with:
python-version: 3.8
- name: Bootstrap poetry
run: |
curl -sSL https://install.python-poetry.org | python - -y --version 1.5.1
- name: Install dependencies
run: poetry install
- name: Install Fern
run: npm install -g fern-api
- name: Test
run: |
fern test --command "poetry run pytest -rP ."