From 9310d059dcacb1a2dc3438e53eaa7dbf0a2dfd1f Mon Sep 17 00:00:00 2001 From: Sylvestre Ledru Date: Wed, 19 May 2021 11:57:44 +0200 Subject: [PATCH] create a task to retrieve data --- .github/workflows/gnu-data.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/workflows/gnu-data.yml diff --git a/.github/workflows/gnu-data.yml b/.github/workflows/gnu-data.yml new file mode 100644 index 000000000..9d8d4e476 --- /dev/null +++ b/.github/workflows/gnu-data.yml @@ -0,0 +1,28 @@ +# This is a basic workflow to help you get started with Actions + +name: CI + +# Controls when the action will run. +on: + push: + branches: + - main + - release/* + schedule: + - cron: "0 2 * * 1-5" + +# A workflow run is made up of one or more jobs that can run sequentially or in parallel +jobs: + gnu: + name: Download GNU test results + runs-on: ubuntu-latest + steps: + # This workflow contains a single job called "build" + - name: Download a Build Artifact + uses: actions/download-artifact@v2.0.9 + with: + # Artifact name + name: gnu-results + repo: https://github.com/uutils/coreutils/ + +