Skip to content

Bump setuptools from 68.2.2 to 70.0.0 #41

Bump setuptools from 68.2.2 to 70.0.0

Bump setuptools from 68.2.2 to 70.0.0 #41

Workflow file for this run

name: Test
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: '${{ matrix.os }}'
strategy:
matrix:
os:
- ubuntu-latest
python-version:
- '3.8'
- '3.9'
- '3.10'
- '3.11'
steps:
- name: 'Set up Python ${{ matrix.python-version }}'
uses: actions/setup-python@v2
with:
python-version: '${{ matrix.python-version }}'
- uses: actions/checkout@v2
- run: pip install pytest-cov codecov
- run: pip install -r requirements-dev.txt
- run: pytest --cov=./vyper
- run: codecov