trying to get install to work on the final step #16
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: Test Lava | |
on: | |
push: | |
branches: | |
- master | |
- update-dep | |
- next | |
pull_request: | |
branches: | |
- master | |
- update-dep | |
- next | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install all requirements | |
run: bash install.sh | |
- name: Confirm Lava tests work as expected | |
run: echo "Hello!" | |
# Perhaps here is where I add the code about pushing to DockerHub? |