Skip to content

Commit

Permalink
Merge pull request #78 from mitre/v3-dev
Browse files Browse the repository at this point in the history
Merge v3-dev to main
  • Loading branch information
dchud authored Mar 14, 2023
2 parents 6996df3 + 3f45fa9 commit a648f93
Show file tree
Hide file tree
Showing 21 changed files with 1,334 additions and 24,719 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/build-and-publish-image-latest.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Adapted from:
# https://github.com/VaultVulp/gp-docker-action#complete-workflow-example
name: Build and publish

on:
push:
branches:
- main

jobs:
build-and-publish-image:
if: github.repository == 'mitre/GrowthViz'
runs-on: ubuntu-latest

steps:
- uses: actions/[email protected]

- name: Build and publish latest Docker image
uses: VaultVulp/[email protected]
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
image-name: gv-image
image-tag: latest
23 changes: 23 additions & 0 deletions .github/workflows/build-and-publish-image-tag.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Adapted from:
# https://github.com/VaultVulp/gp-docker-action#complete-workflow-example
name: Build and publish

on:
push:
tags:
- "*"

jobs:
build-and-publish-image:
if: github.repository == 'mitre/GrowthViz'
runs-on: ubuntu-latest

steps:
- uses: actions/[email protected]

- name: Build and publish tagged Docker image
uses: VaultVulp/[email protected]
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
image-name: gv-image
extract-git-tag: true
7 changes: 4 additions & 3 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,19 +13,20 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [3.7, 3.8, 3.9]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
exclude:
- os: macos-latest
python-version: [3.7]
python-version: ["3.7"]
- os: windows-latest
python-version: [3.7]
python-version: ["3.7"]

steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
check-latest: true
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM jupyter/scipy-notebook

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

COPY LICENSE /LICENSE
COPY README.md /README.md
Expand Down
Loading

0 comments on commit a648f93

Please sign in to comment.