Skip to content

Commit a648f93

Browse files
authored
Merge pull request #78 from mitre/v3-dev
Merge v3-dev to main
2 parents 6996df3 + 3f45fa9 commit a648f93

21 files changed

+1334
-24719
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Adapted from:
2+
# https://github.com/VaultVulp/gp-docker-action#complete-workflow-example
3+
name: Build and publish
4+
5+
on:
6+
push:
7+
branches:
8+
- main
9+
10+
jobs:
11+
build-and-publish-image:
12+
if: github.repository == 'mitre/GrowthViz'
13+
runs-on: ubuntu-latest
14+
15+
steps:
16+
- uses: actions/[email protected]
17+
18+
- name: Build and publish latest Docker image
19+
uses: VaultVulp/[email protected]
20+
with:
21+
github-token: ${{ secrets.GITHUB_TOKEN }}
22+
image-name: gv-image
23+
image-tag: latest
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Adapted from:
2+
# https://github.com/VaultVulp/gp-docker-action#complete-workflow-example
3+
name: Build and publish
4+
5+
on:
6+
push:
7+
tags:
8+
- "*"
9+
10+
jobs:
11+
build-and-publish-image:
12+
if: github.repository == 'mitre/GrowthViz'
13+
runs-on: ubuntu-latest
14+
15+
steps:
16+
- uses: actions/[email protected]
17+
18+
- name: Build and publish tagged Docker image
19+
uses: VaultVulp/[email protected]
20+
with:
21+
github-token: ${{ secrets.GITHUB_TOKEN }}
22+
image-name: gv-image
23+
extract-git-tag: true

.github/workflows/python-package.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -13,19 +13,20 @@ jobs:
1313
fail-fast: false
1414
matrix:
1515
os: [ubuntu-latest, macos-latest, windows-latest]
16-
python-version: [3.7, 3.8, 3.9]
16+
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
1717
exclude:
1818
- os: macos-latest
19-
python-version: [3.7]
19+
python-version: ["3.7"]
2020
- os: windows-latest
21-
python-version: [3.7]
21+
python-version: ["3.7"]
2222

2323
steps:
2424
- uses: actions/checkout@v3
2525
- name: Set up Python ${{ matrix.python-version }}
2626
uses: actions/setup-python@v4
2727
with:
2828
python-version: ${{ matrix.python-version }}
29+
check-latest: true
2930
- name: Install dependencies
3031
run: |
3132
python3 -m pip install --upgrade pip

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM jupyter/scipy-notebook
22

3-
LABEL maintainer="Robi Scalfani <rscalfani@mitre.org>"
3+
LABEL maintainer="Daniel Chudnov <dlchudnov@mitre.org>"
44

55
COPY LICENSE /LICENSE
66
COPY README.md /README.md

0 commit comments

Comments
 (0)