From 51e96fb8ae1a577ddc8a562610cfe58381f1527f Mon Sep 17 00:00:00 2001 From: Turiiya <34311583+ttytm@users.noreply.github.com> Date: Mon, 11 Nov 2024 07:05:02 +0100 Subject: [PATCH] checkout --- .github/workflows/windows.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index a253f63..e467582 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -7,13 +7,15 @@ jobs: setup: runs-on: windows-latest steps: + - uses: actions/checkout@v4 - run: curl --version - run: curl https://httpbin.org --libcurl example.c - run: | curl -Lo libcurl.zip https://curl.se/windows/dl-8.11.0_1/curl-8.11.0_1-win64-mingw.zip powershell -command Expand-Archive -Path libcurl.zip -DestinationPath . mv curl-8.11.0_1-win64-mingw libcurl - ls libcurl + ls -Recurse libcurl + - run: gcc -o example example.c "libcurl/bin/libcurl-x64.dll" -Ilibcurl/include - run: | - # ls libcurl/include - gcc -o example.exe example.c "libcurl/bin/libcurl-x64.dll" -Ilibcurl/include && ./example.exe + ls + example.exe