This repository has been archived by the owner on Sep 26, 2023. It is now read-only.
Update click from 8.1.6 to 8.1.7 #649
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build | |
on: | |
push: | |
branches: | |
- '**' | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v2 | |
- name: Set up Python 3.10 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.10' | |
- name: Install pipenv | |
uses: dschep/install-pipenv-action@v1 | |
- name: Install dependencies | |
run: | | |
pipenv sync | |
- name: Paint it black | |
run: | | |
pipenv run black_ci | |
- name: Run tests | |
run: | | |
pipenv run test | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v1 | |
with: | |
fail_ci_if_error: true | |
files: ${{runner.workspace}}/uml.cs/.coverage |