Skip to content

Commit

Permalink
Merge pull request #34 from GenomicDataInfrastructure/move-data-into-…
Browse files Browse the repository at this point in the history
…json-files

chore: move json into data files
  • Loading branch information
brunopacheco1 authored Aug 21, 2024
2 parents f5bcb18 + aebacd8 commit ea6c563
Show file tree
Hide file tree
Showing 23 changed files with 1,369 additions and 79 deletions.
18 changes: 14 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,18 @@ jobs:
packages: write
steps:
- uses: actions/checkout@v4
- uses: fsfe/reuse-action@v4
- uses: psf/black@stable
- name: Set up Python
uses: actions/setup-python@v5
with:
options: "--check --verbose"
src: "./src"
python-version: "3.12"
- name: install dependencies
run: pip install -r dev-requirements.txt && pip install -r requirements.txt
- name: run pytest
run: pytest --cov=. --cov-report xml:coverage.xml
- name: SonarCloud Scan
uses: SonarSource/sonarcloud-github-action@v3
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
- name: run black
run: black --check --verbose src
- uses: fsfe/reuse-action@v4
Loading

0 comments on commit ea6c563

Please sign in to comment.