forked from PharmGKB/genome-sequence-io
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fa1f1f3
commit 44df540
Showing
310 changed files
with
6,319 additions
and
4,851 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,46 @@ | ||
# SPDX-FileCopyrightText: Copyright 2020-2023, Contributors to CICD | ||
# SPDX-PackageHomePage: https://github.com/dmyersturnbull/cicd | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
name: "🐛 Bug" | ||
description: "Bug report" | ||
labels: ["type: fix"] | ||
|
||
body: | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: What happened? | ||
placeholder: Detail what you did and what happened. | ||
validations: | ||
required: true | ||
- type: dropdown | ||
id: os | ||
attributes: | ||
label: What OS types are you seeing the problem on? | ||
multiple: true | ||
options: | ||
- Windows | ||
- Linux | ||
- macOS | ||
validations: | ||
required: false | ||
- type: dropdown | ||
id: browsers | ||
attributes: | ||
label: What browsers are you seeing the problem on? | ||
multiple: true | ||
options: | ||
- Chrome | ||
- Firefox | ||
- Edge | ||
- Safari | ||
- Opera | ||
- Samsung Internet | ||
validations: | ||
required: false | ||
- type: textarea | ||
id: logs | ||
attributes: | ||
label: Relevant log output | ||
description: Please copy and paste any relevant log output. |
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,16 @@ | ||
# SPDX-FileCopyrightText: Copyright 2020-2023, Contributors to CICD | ||
# SPDX-PackageHomePage: https://github.com/dmyersturnbull/cicd | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
name: "📚 Documentation" | ||
description: "Documentation issue" | ||
labels: ["type: docs"] | ||
|
||
body: | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: What needs work? | ||
placeholder: Describe the documentation issue. | ||
validations: | ||
required: true |
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,16 @@ | ||
# SPDX-FileCopyrightText: Copyright 2020-2023, Contributors to CICD | ||
# SPDX-PackageHomePage: https://github.com/dmyersturnbull/cicd | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
name: "✨ Feature" | ||
description: "Feature request" | ||
labels: ["type: feature"] | ||
|
||
body: | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: What is the feature request? | ||
placeholder: Describe the feature you would like. | ||
validations: | ||
required: true |
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,51 @@ | ||
# SPDX-FileCopyrightText: Copyright 2020-2023, Contributors to CICD | ||
# SPDX-PackageHomePage: https://github.com/dmyersturnbull/cicd | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
name: "🐢 Performance" | ||
description: "Performance issue" | ||
labels: ["type: performance"] | ||
|
||
body: | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: What is the performance issue? | ||
placeholder: Detail your steps and where the performance dropped. | ||
validations: | ||
required: true | ||
- type: input | ||
id: version | ||
attributes: | ||
label: Version | ||
description: What version are you running? | ||
- type: dropdown | ||
id: os | ||
attributes: | ||
label: What OS types are you seeing the problem on? | ||
multiple: true | ||
options: | ||
- Windows | ||
- Linux | ||
- macOS | ||
validations: | ||
required: false | ||
- type: dropdown | ||
id: browsers | ||
attributes: | ||
label: What browsers are you seeing the problem on? | ||
multiple: true | ||
options: | ||
- Chrome | ||
- Firefox | ||
- Edge | ||
- Safari | ||
- Opera | ||
- Samsung Internet | ||
validations: | ||
required: false | ||
- type: textarea | ||
id: logs | ||
attributes: | ||
label: Relevant log output | ||
description: Please copy and paste any relevant log output. |
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 @@ | ||
# Pull request |
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,43 @@ | ||
# This workflow will build a Java project with Gradle | ||
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle | ||
|
||
name: Test | ||
|
||
on: | ||
workflow_call: | ||
inputs: | ||
ref: | ||
type: string | ||
description: Ref to checkout | ||
default: main | ||
|
||
permissions: | ||
contents: read | ||
statuses: read | ||
actions: read | ||
security-events: write | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Set up JDK 20 | ||
uses: actions/setup-java@v2 | ||
with: | ||
distribution: oracle | ||
java-version: "21-ea" | ||
- uses: gradle/wrapper-validation-action@v1 | ||
- name: Set up and execute Gradle test | ||
uses: gradle/gradle-build-action@v2 | ||
with: | ||
arguments: test | ||
- uses: actions/upload-artifact@v3 | ||
with: | ||
name: package | ||
path: build/libs | ||
- uses: actions/upload-artifact@v3 | ||
with: | ||
name: build-reports | ||
path: build/reports/ |
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,30 @@ | ||
# Various static code analysis and checks | ||
# Runs on commit or pull (to any branch) | ||
# and on a schedule (weekly) | ||
name: Static checks | ||
on: | ||
push: | ||
pull_request: | ||
schedule: | ||
- cron: 0 7 * * 6 | ||
jobs: | ||
markdown-link-check: | ||
name: Check Markdown links | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: actions/checkout@master | ||
- uses: gaurav-nelson/github-action-markdown-link-check@v1 | ||
analyse: | ||
name: Analyze with CodeQL | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 2 | ||
- name: Initialize CodeQL | ||
uses: github/codeql-action/init@v1 | ||
- name: Autobuild with CodeQL | ||
uses: github/codeql-action/autobuild@v1 | ||
- name: Perform CodeQL Analysis | ||
uses: github/codeql-action/analyze@v1 |
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
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,3 @@ | ||
dependencies { | ||
compile project(':core') | ||
} | ||
api project(':core') | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
package org.pharmgkb.parsers.bed; | ||
|
||
import org.pharmgkb.parsers.LineParser; | ||
import org.pharmgkb.parsers.bed.model.BedFeature; | ||
|
||
public interface BedParserI extends LineParser<BedFeature> { | ||
|
||
} |
Oops, something went wrong.