Skip to content

Setup: Fixing Library Version (0.1.6) #13

Setup: Fixing Library Version (0.1.6)

Setup: Fixing Library Version (0.1.6) #13

Workflow file for this run

name: ci
on:
push:
branches:
- master
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Update pip
run: pip install pip --upgrade
- name: Install script
run: python install.py
- name: Test Import
run: python -c 'from examples.Pipelines.TrackML_Example.LightningModules.Embedding.embedding_base import EmbeddingBase'
# - name: Make Success Badge
# if: success()
# uses: schneegans/[email protected]
# with:
# auth: ${{ secrets.GIST_SECRET }}
# gistID: acee2761c6c03febc3331296514ff721
# filename: test.json
# label: build
# message: passing
# color: green
# - name: Make Failure Badge
# if: failure()
# uses: schneegans/[email protected]
# with:
# auth: ${{ secrets.GIST_SECRET }}
# gistID: acee2761c6c03febc3331296514ff721
# filename: test.json
# isError: true
# label: build
# message: failing
# color: orange