Bump docker/setup-qemu-action from 2.2.0 to 3.0.0 (#2328) #5195
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 Workflow" | |
on: | |
push: | |
branches: [ main ] | |
paths-ignore: | |
- '**.md' | |
pull_request: | |
branches: [ main ] | |
paths-ignore: | |
- '**.md' | |
jobs: | |
basic-checks: | |
runs-on: ubuntu-20.04 | |
env: | |
USER: jaegertracing | |
steps: | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: "1.21" | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v4 | |
- name: "install kubebuilder" | |
run: ./hack/install/install-kubebuilder.sh | |
- name: "install kustomize" | |
run: ./hack/install/install-kustomize.sh | |
- name: "basic checks" | |
run: make install-tools ci | |
- name: "upload test coverage report" | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
run: ./.ci/upload-test-coverage.sh |