Skip to content

Commit

Permalink
Merge pull request #3 from datamade/feature/filter-eins
Browse files Browse the repository at this point in the history
Feature/filter eins
  • Loading branch information
fgregg authored Jun 14, 2024
2 parents 7ad3110 + 96d2c0d commit 4f03bb0
Show file tree
Hide file tree
Showing 323 changed files with 7,041 additions and 1,098,107 deletions.
41 changes: 41 additions & 0 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: Python package

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
release:

jobs:
build:

runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install flake8 black isort
pip install .[tests]
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Check black
run: black --check irsdb
- name: isort
run: isort --profile=black --check-only irsdb
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
*.csv
*.xml

# Database
*.db

Expand Down
101 changes: 0 additions & 101 deletions 990-xml-reader/.gitignore

This file was deleted.

7 changes: 0 additions & 7 deletions 990-xml-reader/.gitmodules

This file was deleted.

99 changes: 0 additions & 99 deletions 990-xml-reader/CHANGELOG.md

This file was deleted.

21 changes: 0 additions & 21 deletions 990-xml-reader/LICENSE

This file was deleted.

2 changes: 0 additions & 2 deletions 990-xml-reader/MANIFEST.in

This file was deleted.

14 changes: 0 additions & 14 deletions 990-xml-reader/Pipfile

This file was deleted.

76 changes: 0 additions & 76 deletions 990-xml-reader/Pipfile.lock

This file was deleted.

Loading

0 comments on commit 4f03bb0

Please sign in to comment.