From a8ca6ab4b7687a22c195afc4eebbfc2495ae8d5c Mon Sep 17 00:00:00 2001 From: WebFreak001 Date: Sun, 13 Feb 2022 21:09:26 +0100 Subject: [PATCH] upload bin folders as artifacts to test locally --- .github/workflows/default.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/default.yml b/.github/workflows/default.yml index 2cb0790..93ddfe1 100644 --- a/.github/workflows/default.yml +++ b/.github/workflows/default.yml @@ -112,6 +112,11 @@ jobs: rdmd ./d-test-utils/test_with_package.d ${{ matrix.build.version }} -- dub build rdmd ./d-test-utils/test_with_package.d ${{ matrix.build.version }} -- dub test + - uses: actions/upload-artifact@v2 + with: + name: bin-${{matrix.build.type}}-${{matrix.build.version}}-${{ matrix.compiler.dmd }}-${{ matrix.host }} + path: bin + # Lint source code using the previously built binary - name: Run linter shell: bash