Skip to content

Commit 45d4a70

Browse files
shelanelmakarov
andauthored
adds github actions test for install on push (#35)
* adds github actions test for install on push * removes travis tests Co-authored-by: Leonid Makarov <[email protected]>
1 parent 40b3da6 commit 45d4a70

File tree

2 files changed

+25
-14
lines changed

2 files changed

+25
-14
lines changed

.github/workflows/install.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Install boilerplate
2+
3+
on: [push]
4+
5+
env:
6+
DOCKSAL_SSH_AGENT_USE_HOST: 0
7+
DOCKSAL_DNS_DISABLED: 1
8+
9+
jobs:
10+
install:
11+
name: Verify boilerplate installs
12+
runs-on: ubuntu-20.04
13+
steps:
14+
- name: Install Docksal
15+
run: curl -fsSL https://get.docksal.io | bash
16+
- name: fin sysinfo
17+
run: fin sysinfo
18+
- name: Checkout
19+
uses: actions/checkout@v3
20+
- name: Install boilerplate
21+
run: fin init
22+
- name: Test boilerplate
23+
run: fin test
24+
- name: fin config
25+
run: fin config

.travis.yml

Lines changed: 0 additions & 14 deletions
This file was deleted.

0 commit comments

Comments
 (0)