Skip to content

Commit

Permalink
added CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
iraikov committed Sep 1, 2022
1 parent 35b71d5 commit 55fa573
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# .github/workflows/build.yaml
name: distwq CI

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]

steps:
- name: Checkout sources
uses: actions/checkout@v2

- name: Setup Python
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 tox tox-gh-actions
- name: Run tox
run: tox

0 comments on commit 55fa573

Please sign in to comment.