Skip to content

feat: Support updating all fields of collaboration #274

feat: Support updating all fields of collaboration

feat: Support updating all fields of collaboration #274

name: Integration tests
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
tests:
name: Integration tests
runs-on: ubuntu-20.04
strategy:
max-parallel: 1
matrix:
python-version:
- '3.6'
- '3.8'
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -e ".[dev]"
- name: Run integration tests
run: |
tox -e integration-tests
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
JWT_CONFIG_BASE_64: ${{ secrets.JWT_CONFIG_BASE_64 }}
ADMIN_USER_ID: ${{ secrets.ADMIN_USER_ID }}