feat: add install script for go and docker #198
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
| # This is a basic workflow to help you get started with Actions | |
| name: CI | |
| # Controls when the action will run. Triggers the workflow on push or pull request | |
| # events but only for the master branch | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| # A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
| jobs: | |
| # This workflow contains a single job called "build" | |
| build: | |
| # The type of runner that the job will run on | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [macos-11, macos-10.15] | |
| # Steps represent a sequence of tasks that will be executed as part of the job | |
| steps: | |
| # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
| - uses: actions/checkout@v3 | |
| - name: Log github_repository | |
| run: echo "Current Repository is $GITHUB_SERVER_URL/$GITHUB_REPOSITORY" | |
| # check shell, env, etc | |
| - name: Check versions of pre-installed software/system | |
| run: sw_vers; echo $HOME; | |
| # Runs a set of commands using the runners shell | |
| - name: Execute full install | |
| run: ./bootstrap.sh | |
| - name: symlink and config | |
| run: ./config.sh | |
| # Print out result | |
| - name: test post-shell script | |
| run: echo Done! |