Skip to content

Commit

Permalink
Github Workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
JKomorniczak committed Aug 6, 2024
1 parent ee7fc1c commit e53d1ba
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 53 deletions.
53 changes: 0 additions & 53 deletions .circleci/config.yml

This file was deleted.

25 changes: 25 additions & 0 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Python package

on: [push]

jobs:
build:

runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9"]

steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install --upgrade pytest pytest-cov
- name: Test with pytest
run: |
python setup.py develop
make test

0 comments on commit e53d1ba

Please sign in to comment.