From 17b787aeeab455bbe432414948c01544891631a4 Mon Sep 17 00:00:00 2001 From: Matias Linares Date: Sun, 17 May 2020 21:13:34 -0300 Subject: Create main.yml --- .github/workflows/main.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/workflows/main.yml (limited to '.github') diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..88a2991 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,27 @@ +# This is a basic workflow to help you get started with Actions + +name: Tests + +# Controls when the action will run. Triggers the workflow on push or pull request +# events but only for the master branch +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +# 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" + test: + # The type of runner that the job will run on + runs-on: ubuntu-latest + + # 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 + + - name: Run tests + id: tests + uses: JJ/raku-container-action@master -- cgit v1.2.3-70-g09d2 From e32ac2fe81a3ab4e5532f1a67a5df3c6904aad2b Mon Sep 17 00:00:00 2001 From: Matias Linares Date: Sun, 6 Sep 2020 19:41:46 -0300 Subject: [Github workflow] Change actions/checkout from v2 to v1 --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to '.github') diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 88a2991..c0d8c82 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -20,8 +20,8 @@ jobs: # 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 - + - uses: actions/checkout@v1 + - name: Run tests id: tests uses: JJ/raku-container-action@master -- cgit v1.2.3-70-g09d2 From 6c44b6f1d932a993b88c3faa7fde3ef2f3dd527d Mon Sep 17 00:00:00 2001 From: Matias Linares Date: Mon, 23 Nov 2020 19:24:45 -0300 Subject: Update main.yml --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to '.github') diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c0d8c82..f059876 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -20,8 +20,8 @@ jobs: # 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@v1 - + - name: Checkout + uses: actions/checkout@v1 - name: Run tests id: tests uses: JJ/raku-container-action@master -- cgit v1.2.3-70-g09d2 From 84dad3c022ed222f9c63fe50af18125c1009df7d Mon Sep 17 00:00:00 2001 From: Matias Linares Date: Sun, 27 Dec 2020 11:58:38 -0300 Subject: Update github action --- .github/workflows/main.yml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) (limited to '.github') diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index f059876..38432cc 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -21,7 +21,15 @@ jobs: steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - name: Checkout - uses: actions/checkout@v1 + uses: actions/checkout@v2 - name: Run tests id: tests - uses: JJ/raku-container-action@master + uses: Raku/setup-raku@v1 + with: + raku-version: 'latest' + - name: Install Dependencies + run: zef install --deps-only --/test --test-depends . + - name: Install App::Prove6 + run: zef install --/test App::Prove6 + - name: Run Tests + run: prove6 -l t xt -- cgit v1.2.3-70-g09d2 From f1d1a526cc4950578e8769fe3c94147777466531 Mon Sep 17 00:00:00 2001 From: Matias Linares Date: Sun, 27 Dec 2020 12:03:26 -0300 Subject: Remove unused xt/ directory from github actions --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.github') diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 38432cc..b568bda 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -32,4 +32,4 @@ jobs: - name: Install App::Prove6 run: zef install --/test App::Prove6 - name: Run Tests - run: prove6 -l t xt + run: prove6 -l t -- cgit v1.2.3-70-g09d2