Skip to content

add 403 return code to get service #86

add 403 return code to get service

add 403 return code to get service #86

Workflow file for this run

on: pull_request
jobs:
pre-commit:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Setup python 3.10
uses: actions/setup-python@v1
with:
python-version: 3.10.14
- 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_requirements3.txt && pip install -r requirements3.txt
# - name: Run license finder
# run: license_finder
test:
runs-on: ubuntu-22.04
strategy:
matrix:
python-version: ['3.10.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 requirements.txt && pip install -e .
- name: Run python tests
run: make test