Skip to content

Commit 3844578

Browse files
committed
2 parents 808eb32 + ec49ef0 commit 3844578

129 files changed

Lines changed: 26193 additions & 5 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/maven.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# This workflow will build a Java project with Maven
2+
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
3+
4+
name: Java CI with Maven
5+
6+
on:
7+
push:
8+
branches: [ master ]
9+
pull_request:
10+
branches: [ master ]
11+
12+
jobs:
13+
build:
14+
15+
runs-on: ubuntu-latest
16+
17+
steps:
18+
- uses: actions/checkout@v2
19+
- name: Set up JDK 1.8
20+
uses: actions/setup-java@v1
21+
with:
22+
java-version: 1.8
23+
- name: Build with Maven
24+
run: mvn -B package --file pom.xml

.github/workflows/python.yml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
name: Python SBOL3 Test
2+
3+
on:
4+
# Schedule a nightly build. Times are UTC
5+
# See https://docs.github.com/en/actions/reference/events-that-trigger-workflows#scheduled-events
6+
schedule:
7+
# 5:15 am UTC (https://en.wikipedia.org/wiki/5:15)
8+
- cron: '15 5 * * *'
9+
push:
10+
pull_request:
11+
12+
jobs:
13+
build:
14+
runs-on: ubuntu-latest
15+
strategy:
16+
matrix:
17+
# Default builds are on Ubuntu
18+
os: [macos-latest, ubuntu-latest, windows-latest]
19+
# Only test on with the latest version of Python 3
20+
python-version: ['3.x']
21+
steps:
22+
- uses: actions/checkout@v2
23+
with:
24+
submodules: 'recursive'
25+
- name: Set up Python ${{ matrix.python-version }}
26+
uses: actions/setup-python@v2
27+
with:
28+
python-version: ${{ matrix.python-version }}
29+
- name: Install dependencies
30+
run: |
31+
python -m pip install --upgrade pip
32+
python -m pip install sbol3
33+
- name: Test with unittest
34+
run: |
35+
python -m unittest discover -s src/test/python

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,5 @@
33
/.project
44
/.classpath
55
/.travis.yml~
6+
/.idea
7+
__pycache__

.travis.yml

Lines changed: 0 additions & 5 deletions
This file was deleted.

SBOL3/BBa_F2620_PoPSReceiver/BBa_F2620_PoPSReceiver.jsonld

Lines changed: 441 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)