From 3f826f040ed668c124fc9ed1ada237085d267a43 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Dunglas?= Date: Mon, 19 Dec 2022 21:38:26 +0100 Subject: [PATCH] add missing checkout action --- .github/workflows/tests.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 86b383b..ab53edc 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -8,12 +8,14 @@ jobs: test-normal-compile: runs-on: ubuntu-latest steps: + - uses: actions/checkout@v3 - name: Run tests with standard compilation flags working-directory: tests/ run: ./normal_compile.sh test-optimized-compile: runs-on: ubuntu-latest steps: + - uses: actions/checkout@v3 - name: Run tests with optimized compilation flags working-directory: tests/ run: ./optimized_compile.sh