Skip to content

Bump setuptools from 67.4.0 to 70.0.0 #77

Bump setuptools from 67.4.0 to 70.0.0

Bump setuptools from 67.4.0 to 70.0.0 #77

Workflow file for this run

name: master
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9']
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- uses: Gr1N/setup-poetry@v8
- name: Make bin files executable
run: chmod +x bin/*
- name: Check dependencies
run: make doctor
- uses: actions/cache@v2
with:
path: .venv
key: ${{ runner.os }}-poetry-${{ hashFiles('poetry.lock') }}
- name: Install dependencies
run: make install
# Temporarily ignore steps
# - name: Check code
# run: make check
# - name: Upload coverage
# uses: codecov/codecov-action@v1
# with:
# fail_ci_if_error: true