Skip to content

chore: apply new github bot for jira and gh sync and remove the old j… #22

chore: apply new github bot for jira and gh sync and remove the old j…

chore: apply new github bot for jira and gh sync and remove the old j… #22

Workflow file for this run

name: Tests
on:
push:
branches:
- main
- master
pull_request:
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install dependencies
run: python3 -m pip install tox
- name: Run linters
run: tox -e lint
unit-test:
name: Unit tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install dependencies
run: python -m pip install tox
- name: Run tests
run: tox -e unit