Bump tqdm from 4.32.2 to 4.66.3 in /.github #70
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: Fotogalleri - CI | |
on: pull_request | |
jobs: | |
lint: | |
runs-on: ubuntu-16.04 | |
steps: | |
# Without the following action the Makefile won't be found | |
- uses: actions/checkout@v1 | |
- name: Update Ubuntu archives | |
run: sudo apt-get update --yes | |
- name: Install LDAP requirements | |
run: sudo apt-get install -y python-dev libldap2-dev libsasl2-dev libssl-dev | |
- name: Set up Python 3.5 | |
uses: actions/setup-python@v1 | |
with: | |
python-version: 3.5 | |
- name: Install virtualenv | |
run: pip install virtualenv | |
- name: Lint with PEP8 | |
run: make REQUIREMENTS_FILE=.github/requirements.github.txt lint | |
test: | |
runs-on: ubuntu-16.04 | |
steps: | |
# Without the following action the Makefile won't be found | |
- uses: actions/checkout@v1 | |
- name: Update Ubuntu archives | |
run: sudo apt-get update --yes | |
- name: Install LDAP requirements | |
run: sudo apt-get install -y python-dev libldap2-dev libsasl2-dev libssl-dev | |
- name: Set up Python 3.5 | |
uses: actions/setup-python@v1 | |
with: | |
python-version: 3.5 | |
- name: Install virtualenv | |
run: pip install virtualenv | |
- name: Run tests | |
run: make REQUIREMENTS_FILE=.github/requirements.github.txt test |