-
Notifications
You must be signed in to change notification settings - Fork 0
37 lines (32 loc) · 942 Bytes
/
playground.yaml
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
name: Playground
on:
push:
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: setup python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: python path
run: which python
- name: list site-packages
run: ls -l $(dirname `dirname $(which python)`)/lib/python3.11/site-packages/
- name: list packages
run: pip list
- name: install something
run: pip install flask
- name: list site-packages
run: ls -l $(dirname `dirname $(which python)`)/lib/python3.11/site-packages/
- name: list packages
run: pip list
# docker:
# uses: actions/workflows/.github/workflows/docker.yml@v1
# with:
# image: smirl/tools
# slingshot:
# uses: actions/workflows/.github/workflows/slingshot.yml@v1
# with:
# service_name: smirl-tools
# slingshot_file: .slingshot.yaml