-
Notifications
You must be signed in to change notification settings - Fork 6
40 lines (40 loc) · 1.22 KB
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
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