Bump cryptography from 41.0.1 to 41.0.4 #451
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-20.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v1 | |
- name: Setup python 3.8 | |
uses: actions/setup-python@v1 | |
with: | |
python-version: 3.8 | |
- name: Install pre-commit | |
run: pip install pre-commit | |
- name: Run pre-commit | |
run: pre-commit run --all-files | |
## Uncomment once license tests are in and passing | |
#license-check: | |
# runs-on: ubuntu-18.04 | |
# steps: | |
# - name: Checkout | |
# uses: actions/checkout@v1 | |
# - 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: Setup python 3.6 | |
# uses: actions/setup-python@v1 | |
# with: | |
# python-version: 3.6 | |
# - name: Install apt dependencies | |
# run: 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_requirements.txt && pip install -r requirements.txt | |
# - name: Run license finder | |
# run: license_finder | |
test-unit: | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
python-version: ['3.7.x', '3.8.x'] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v1 | |
- name: Setup python ${{ matrix.python-version }} | |
uses: actions/setup-python@v1 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install apt dependencies | |
run: sudo apt-get update && 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_requirements.txt && pip install -r piptools_requirements3.txt && pip install -r requirements3.txt | |
- name: Run python unit tests | |
run: make test_unit | |
test-integration: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v1 | |
- name: Run python integration tests | |
run: "make actions_test_integration" | |
test-frontend: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v1 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: '8.x' | |
- name: Run frontend tests | |
run: "npm install grunt-cli && npm install && grunt test" |