Merge pull request #17 from mathematicalmichael/feature/actions
CI with Github Actions
This commit is contained in:
commit
0091efecc4
58
.github/workflows/main.yml
vendored
Normal file
58
.github/workflows/main.yml
vendored
Normal file
@ -0,0 +1,58 @@
|
|||||||
|
# This is a basic workflow to help you get started with Actions
|
||||||
|
|
||||||
|
name: Docker
|
||||||
|
|
||||||
|
# Controls when the action will run. Triggers the workflow on push or pull request
|
||||||
|
# events but only for the master branch
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [ master ]
|
||||||
|
pull_request:
|
||||||
|
branches: [ master, docker-swarm ]
|
||||||
|
|
||||||
|
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
|
||||||
|
jobs:
|
||||||
|
docker-default:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
|
||||||
|
- name: Test Quickstart (defaults)
|
||||||
|
run: |
|
||||||
|
./generate-Dockerfile.sh
|
||||||
|
./start-local.sh -p 8848
|
||||||
|
|
||||||
|
docker-slim:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
|
||||||
|
- name: Test Quickstart (defaults)
|
||||||
|
run: |
|
||||||
|
./generate-Dockerfile.sh --slim
|
||||||
|
./start-local.sh -p 8848
|
||||||
|
|
||||||
|
docker-nods:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
|
||||||
|
- name: Test Quickstart (defaults)
|
||||||
|
run: |
|
||||||
|
./generate-Dockerfile.sh --no-datascience-notebook
|
||||||
|
./start-local.sh -p 8848
|
||||||
|
|
||||||
|
docker-noup:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
|
||||||
|
- name: Test Quickstart (defaults)
|
||||||
|
run: |
|
||||||
|
./generate-Dockerfile.sh --no-useful-packages
|
||||||
|
./start-local.sh -p 8848
|
||||||
|
|
Loading…
Reference in New Issue
Block a user