From 851d5f86132025b8e8b97853f30e34254d90086b Mon Sep 17 00:00:00 2001 From: David Gibson Date: Tue, 14 Sep 2021 20:17:18 +1000 Subject: [PATCH] tests: Correct heading in static checks test The github static checks action has a section heading called "Building rust". It doesn't actually build rust, though, just installs it with rustup. Correct the misleading message. Signed-off-by: David Gibson --- .github/workflows/static-checks.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/static-checks.yaml b/.github/workflows/static-checks.yaml index 1877fbe3d..235e7f2f8 100644 --- a/.github/workflows/static-checks.yaml +++ b/.github/workflows/static-checks.yaml @@ -60,7 +60,7 @@ jobs: cd ${GOPATH}/src/github.com/${{ github.repository }} && ./ci/setup.sh env: GOPATH: ${{ runner.workspace }}/kata-containers - - name: Building rust + - name: Installing rust if: ${{ !contains(github.event.pull_request.labels.*.name, 'force-skip-ci') }} run: | cd ${GOPATH}/src/github.com/${{ github.repository }} && ./ci/install_rust.sh