-
Notifications
You must be signed in to change notification settings - Fork 1
40 lines (37 loc) · 1.01 KB
/
flowx.yml
File metadata and controls
40 lines (37 loc) · 1.01 KB
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: FlowX
on:
pull_request:
branches:
- main
- development
paths-ignore:
- '**.rst'
- '**.md'
- 'LICENSE'
- 'CITATION'
jobs:
library:
name: "library"
runs-on: ubuntu-latest
steps:
#- name: Login to Docker Hub
# run: |
# echo "::add-mask::${{secrets.DOCKER_HUB_PSK}}"
#- uses: docker/login-action@v1
# with:
# username: ${{secrets.DOCKER_HUB_USERNAME}}
# password: ${{secrets.DOCKER_HUB_PSK}}
- uses: actions/checkout@v2
- uses: akashdhruv/Maple/.github/actions/maple@main
- name: Build Container
run: |
maple image build flowx --base=${{secrets.DOCKER_HUB_USERNAME}}/flowx:archive-spring-2022
- uses: ./.github/actions/install
with:
image: flowx
- name: Run BoxKit tests
run: |
maple container pour --image=flowx
maple container execute "python3 tests/container/application.py"
maple container rinse
maple image delete flowx