-
-
Notifications
You must be signed in to change notification settings - Fork 43
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 sonatype-nexus-community/features/initial-…
…port-of-v1.1-generation-from-jake Initial port of library code to new library
- Loading branch information
Showing
59 changed files
with
14,546 additions
and
26 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
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,29 @@ | ||
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates | ||
|
||
version: 2 | ||
updates: | ||
- package-ecosystem: 'pip' | ||
directory: '/' | ||
schedule: | ||
interval: 'weekly' | ||
day: 'saturday' | ||
allow: | ||
- dependency-type: 'all' | ||
versioning-strategy: 'auto' | ||
labels: [ 'dependencies' ] | ||
commit-message: | ||
## prefix maximum string length of 15 | ||
prefix: 'poetry' | ||
include: 'scope' | ||
open-pull-requests-limit: 999 | ||
- package-ecosystem: 'github-actions' | ||
directory: '/' | ||
schedule: | ||
interval: 'weekly' | ||
day: 'saturday' | ||
labels: [ 'dependencies' ] | ||
commit-message: | ||
## prefix maximum string length of 15 | ||
prefix: 'gh-actions' | ||
include: 'scope' | ||
open-pull-requests-limit: 999 |
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,99 @@ | ||
# For details of what checks are run for PRs please refer below | ||
# docs: https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions | ||
name: Python CI | ||
|
||
on: | ||
push: | ||
branches: ["master"] | ||
pull_request: | ||
workflow_dispatch: | ||
schedule: | ||
# schedule weekly tests, since dependencies are not intended to be pinned | ||
# this means: at 23:42 on Fridays | ||
- cron: '42 23 * * 5' | ||
|
||
env: | ||
REPORTS_DIR: CI_reports | ||
|
||
jobs: | ||
coding-standards: | ||
name: Linting & Coding Standards | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
# see https://github.com/actions/checkout | ||
uses: actions/checkout@v2 | ||
- name: Setup Python Environment | ||
# see https://github.com/actions/setup-python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: 3.9 | ||
architecture: 'x64' | ||
- name: Install poetry | ||
# see https://github.com/marketplace/actions/setup-poetry | ||
uses: Gr1N/setup-poetry@v7 | ||
with: | ||
poetry-version: 1.1.8 | ||
- uses: actions/cache@v2 | ||
with: | ||
path: ~/.cache/pypoetry/virtualenvs | ||
key: ${{ runner.os }}-poetry-${{ hashFiles('poetry.lock') }} | ||
- name: Install dependencies | ||
run: poetry install | ||
- name: Run tox | ||
run: poetry run tox -e flake8 | ||
|
||
build-and-test: | ||
name: Build & Test (Python ${{ matrix.python-version }} | ||
runs-on: ubuntu-latest | ||
env: | ||
REPORTS_ARTIFACT: tests-reports | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
python-version: | ||
- "3.9" # highest supported | ||
- "3.8" | ||
- "3.7" | ||
- "3.6" # lowest supported | ||
timeout-minutes: 30 | ||
steps: | ||
- name: Checkout | ||
# see https://github.com/actions/checkout | ||
uses: actions/checkout@v2 | ||
- name: Create reports directory | ||
run: mkdir ${{ env.REPORTS_DIR }} | ||
- name: Setup Python Environment | ||
# see https://github.com/actions/setup-python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
architecture: 'x64' | ||
- name: Install poetry | ||
# see https://github.com/marketplace/actions/setup-poetry | ||
uses: Gr1N/setup-poetry@v7 | ||
with: | ||
poetry-version: 1.1.8 | ||
- uses: actions/cache@v2 | ||
with: | ||
path: ~/.cache/pypoetry/virtualenvs | ||
key: ${{ runner.os }}-poetry-${{ hashFiles('poetry.lock') }} | ||
- name: Install dependencies | ||
run: poetry install | ||
- name: Ensure build successful | ||
run: poetry build | ||
- name: Run tox | ||
run: poetry run tox -e py${{ matrix.python-version }} | ||
- name: Generate coverage reports | ||
run: > | ||
poetry run coverage report && | ||
poetry run coverage xml -o ${{ env.REPORTS_DIR }}/coverage.xml && | ||
poetry run coverage html -d ${{ env.REPORTS_DIR }} | ||
- name: Artifact reports | ||
if: ${{ ! cancelled() }} | ||
# see https://github.com/actions/upload-artifact | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: ${{ env.REPORTS_ARTIFACT }} | ||
path: ${{ env.REPORTS_DIR }} | ||
if-no-files-found: error |
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,2 +1,24 @@ | ||
# Exlude python build & distribution directories | ||
build/ | ||
dist/ | ||
*.egg-info* | ||
|
||
# Exlude *.pyc | ||
*.pyc | ||
|
||
# Exclude test-related items | ||
.tox/* | ||
|
||
# Exclude coverage | ||
.coverage | ||
test-reports | ||
|
||
# Exclude Python Virtual Environment | ||
venv/* | ||
|
||
# Exlude IDE related files | ||
.idea/* | ||
.vscode/* | ||
|
||
# ci config for local ci build | ||
/.circleci/local-config.yml | ||
/.circleci/local-config.yml |
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,3 @@ | ||
include README.md | ||
include VERSION | ||
include cyclonedx/schema/* |
Oops, something went wrong.