From f5781a797173333fe7dd3724a32724c906db6ec6 Mon Sep 17 00:00:00 2001 From: Alex Lowe Date: Fri, 15 Nov 2024 12:53:13 -0500 Subject: [PATCH] example workflow for runner failure https://github.com/actions/runner-images/issues/10977 --- .github/workflows/test.yaml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/test.yaml diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml new file mode 100644 index 0000000..83c217c --- /dev/null +++ b/.github/workflows/test.yaml @@ -0,0 +1,17 @@ +name: Self-tests for scanners + +on: + push: + pull_request: + +jobs: + man-db: + strategy: + matrix: + os: [ubuntu-20.04, ubuntu-22.04, ubuntu-24.04] + runs-on: ${{ matrix.os }} + steps: + - run: | + sudo apt-get update + timeout 30s sudo apt-get --yes install sl + date