Revert Docksal merged settings #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Install boilerplate | |
on: [push] | |
env: | |
DOCKSAL_SSH_AGENT_USE_HOST: 0 | |
DOCKSAL_DNS_DISABLED: 1 | |
jobs: | |
install: | |
name: Verify boilerplate installs | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Install Docksal | |
run: curl -fsSL https://get.docksal.io | bash | |
- name: fin sysinfo | |
run: fin sysinfo | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install boilerplate | |
run: fin init | |
- name: Test boilerplate | |
run: fin test | |
- name: fin config | |
run: fin config |