Skip to content

Commit

Permalink
Try gh actions
Browse files Browse the repository at this point in the history
  • Loading branch information
maths22 committed Jul 16, 2024
1 parent f0baa5d commit a1e4df7
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 96 deletions.
96 changes: 0 additions & 96 deletions .circleci/config.yml

This file was deleted.

18 changes: 18 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Test
on: [push]
jobs:
main:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.12'
cache: 'pip' # caching pip dependencies
cache-dependency-path: |
requirements.txt
requirements-dev.txt
# Todo theoretically run pre-commit here too
- run: pip install -r requirements.txt
- run: pip install -r requirements-dev.txt
- run: nosetests

0 comments on commit a1e4df7

Please sign in to comment.