Bump github.com/hashicorp/go-retryablehttp from 0.7.0 to 0.7.7 (#88) #57
Workflow file for this run
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: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: 1.21 | |
- name: Check formatting | |
run: make fmt | |
- name: Run linters | |
run: make lint | |
- name: Run unit tests | |
run: make test | |
acceptance: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: 1.21 | |
- name: Install dependencies | |
run: sudo apt-get install -y genisoimage podman netcat | |
- name: Start Ironic and Inspector | |
run: ./hack/local_ironic.sh | |
- name: Run tests | |
run: make acceptance | |
- name: Collect logs | |
if: always() | |
run: ./hack/collect_logs.sh |