Skip to content

Commit

Permalink
Add ci yml file for gh actions
Browse files Browse the repository at this point in the history
  • Loading branch information
eliasdabbas committed Oct 30, 2023
1 parent 024ed7d commit e1d0a14
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: CI

on: [push, pull_request]

jobs:
build:

runs-on: ubuntu-latest
strategy:
matrix:
python: ["3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python }}
- name Install Tox and other packages
run: pip install tox
- name: Run Tox
run: tox

0 comments on commit e1d0a14

Please sign in to comment.