Skip to content

Commit

Permalink
tools: add GitHub action -> testing
Browse files Browse the repository at this point in the history
  • Loading branch information
palazzem committed Sep 1, 2023
1 parent 7b28a40 commit 0ac0997
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/testing.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: 'Testing'

on:
workflow_dispatch:
push:
branches:
- main
pull_request:

permissions:
contents: read

concurrency:
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}'
cancel-in-progress: true

jobs:
econnect:
runs-on: ubuntu-20.04
env:
TOX_SKIP_ENV: lint

steps:
- name: Check out repository code
uses: actions/checkout@v3

- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.11'

- name: Upgrade pip and install required tools
run: |
pip install --upgrade pip
pip install tox
- name: Test with tox environments
run: tox

0 comments on commit 0ac0997

Please sign in to comment.