Skip to content

Commit

Permalink
Merge pull request #1 from CircuitSacul/add-ci
Browse files Browse the repository at this point in the history
Create ci.yml
  • Loading branch information
circuitsacul authored Dec 4, 2022
2 parents a4c2eea + e3c79ec commit f2dd7db
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: CI

on:
pull_request:

jobs:
ci:
runs-on: ${{ matrix.os }}-latest
strategy:
matrix:
python-version: [ '3.8', '3.9', '3.10', '3.11' ]
os: [ ubuntu, windows ]

name: ${{ matrix.python-version }} ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Nox
run: pip install nox
- name: Run Nox
run: nox
- name: Upload to CodeCov
uses: codecov/codecov-action@v3

0 comments on commit f2dd7db

Please sign in to comment.