Add workspace parameter to update script #83
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: "CI" | |
on: | |
pull_request: | |
branches: | |
- "*" | |
push: | |
branches: | |
- "main" | |
jobs: | |
test: | |
runs-on: "ubuntu-latest" | |
env: | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
steps: | |
- uses: "actions/checkout@v2" | |
- name: "Set up for CI" | |
run: ./run ci:setup | |
- name: "Build the HCI Docker container" | |
run: ./run container:build | |
- name: "Run the HCI Docker container" | |
run: ./run container | |
- name: "Run the CI checks in the container" | |
run: ./run ci |