[INTPROD-9204] Allow Match By Bot User ID #270
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
on: pull_request | |
jobs: | |
pre-commit: | |
runs-on: ubuntu-18.04 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Setup python 3.8 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.8 | |
- name: Install pre-commit | |
run: pip install pre-commit | |
- name: Run pre-commit | |
run: pre-commit run --all-files | |
license-check: | |
runs-on: ubuntu-18.04 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Setup Ruby 2.x | |
uses: actions/setup-ruby@v1 | |
with: | |
ruby-version: 2.x | |
- name: Install license finder | |
run: gem install license_finder | |
- name: Allow gevent Zope license | |
run: license_finder permitted_licenses add "Zope Public License" | |
- name: Setup python 3.8 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.8 | |
- name: Install apt dependencies | |
run: sudo apt-get update -y && sudo apt-get install -y python3-dev openssl libssl-dev gcc pkg-config libffi-dev libxml2-dev libxmlsec1-dev | |
- name: Install dependencies | |
run: pip install -r piptools_requirements3.txt && pip install -r requirements3.txt | |
- name: Run license finder | |
run: license_finder | |
test: | |
runs-on: ubuntu-18.04 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Setup python 3.8 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.8 | |
- name: Install apt dependencies | |
run: sudo apt-get update -y && sudo apt-get install -y python3-dev openssl libssl-dev gcc pkg-config libffi-dev libxml2-dev libxmlsec1-dev | |
- name: Install dependencies | |
run: pip install -r piptools_requirements3.txt && pip install -r requirements3.txt | |
- name: Run tests | |
run: make test |