feat: ensure SSH service is enabled at end of install.sh to prevent c… #121
This file contains hidden or 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: Test dotfile setup on Ubuntu Server | |
| on: | |
| push: | |
| branches: [ "main", "develop" ] | |
| pull_request: | |
| branches: [ "main", "develop" ] | |
| jobs: | |
| shellcheck: | |
| name: Shellcheck | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Run ShellCheck | |
| uses: ludeeus/action-shellcheck@master | |
| with: | |
| ignore_paths: >- | |
| home | |
| buildtest: | |
| name: Build and test ubuntu server | |
| needs: shellcheck | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set environment variables | |
| run: | | |
| echo "ACCEPT_INSTALL=y" >> $GITHUB_ENV | |
| - name: Run dotfiles install and test script | |
| run: | | |
| set -e | |
| export CI=1 | |
| git submodule update --init | |
| cp .env.example .env | |
| bash setup.sh |