Bump urllib3 from 1.26.18 to 1.26.19 #29
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: CI on ubuntu-latest | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Python code format test | |
run: | | |
sudo pip3 install black | |
black --check getotrs | |
black --check . | |
- name: Install requirements | |
run: sudo pip3 install -r requirements.txt | |
- name: Install getotrs | |
run: sudo python3 setup.py install | |
- name: Execute | |
run: getotrs -h |