-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from wiresio/clean_repo
Clean repo
- Loading branch information
Showing
57 changed files
with
2,152 additions
and
2,784 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
name: Test | ||
|
||
on: pull_request | ||
|
||
jobs: | ||
lint: | ||
name: Linting and formatting | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-python@v3 | ||
name: Install Python | ||
with: | ||
python-version: "3.x" | ||
|
||
- name: Install tox | ||
run: python -m pip install tox | ||
|
||
- name: Run test suite | ||
run: python -m tox -p -e flake8,black,yamllint | ||
|
||
test_tox: | ||
name: Run full tests | ||
needs: lint | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-python@v3 | ||
name: Install Python | ||
with: | ||
python-version: "3.x" | ||
- name: Install Node | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: "latest" | ||
|
||
- name: Install node modules | ||
run: npm ci | ||
|
||
- name: Install tox | ||
run: python -m pip install tox | ||
|
||
- name: Run test suite | ||
run: python -m tox -e py3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
fuseki-docker/databases/* | ||
__pycache__/ | ||
node_modules/ | ||
.tox | ||
*.egg-info/ | ||
.pytest_cache |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.