Skip to content

Commit

Permalink
Merge pull request #12 from schmidtfa/add_ci
Browse files Browse the repository at this point in the history
Add continuous integration and coveralls integration
  • Loading branch information
schmidtfa authored Jul 25, 2024
2 parents f696fe5 + 2489fc1 commit 951efc6
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
version: 2
updates:
- package-ecosystem: github-actions
directory: /
schedule:
interval: weekly
groups:
dependencies:
patterns:
- "*"
27 changes: 27 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Run pytest tests
on:
push:
branches:
- main
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

permissions:
contents: read
pull-requests: read
checks: write
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: prefix-dev/[email protected]
with:
pixi-version: latest
cache: true
- run: pixi run lint_ci
- run: pixi run test
- name: Coveralls
uses: coverallsapp/github-action@v2

0 comments on commit 951efc6

Please sign in to comment.