Skip to content

build(deps): bump setuptools from 69.0.2 to 69.1.1 #315

build(deps): bump setuptools from 69.0.2 to 69.1.1

build(deps): bump setuptools from 69.0.2 to 69.1.1 #315

Workflow file for this run

name: Cli Testing
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
strategy:
matrix:
#os: [ubuntu-latest, windows-latest, macos-latest]
os: [ubuntu-latest]
python-version: ["3.11"]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
submodules: recursive
- name: Setup Docker on macOS
uses: douglascamata/setup-docker-macos-action@v1-alpha
if: startsWith(runner.os, 'macos')
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: pip install -r requirements.txt
- name: Run cli tests
shell: bash
run: |
bash install_package.sh
pytest up/tests/*.py