From 3281816c7ea06cc8e079f696ec57e30e4687041b Mon Sep 17 00:00:00 2001 From: Adam Dubnytskyy Date: Tue, 24 Nov 2020 20:23:39 +0200 Subject: [PATCH] awesome search actions wip --- .github/workflows/awesome-search-actions.yml | 21 ++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/awesome-search-actions.yml diff --git a/.github/workflows/awesome-search-actions.yml b/.github/workflows/awesome-search-actions.yml new file mode 100644 index 0000000..20b2bed --- /dev/null +++ b/.github/workflows/awesome-search-actions.yml @@ -0,0 +1,21 @@ +# This is a basic workflow to help you get started with Actions + +name: CI + +on: + workflow_dispatch: + +# A workflow run is made up of one or more jobs that can run sequentially or in parallel +jobs: + # This workflow contains a single job called "build" + check-links: + runs-on: ubuntu-18.04 + + # Steps represent a sequence of tasks that will be executed as part of the job + steps: + # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it + - uses: actions/checkout@v2 + + # Runs a single command using the runners shell + - name: Run a one-line script + run: echo Hello, world!