From f160876f614cf943c15618e0122ea43abb8ffa3e Mon Sep 17 00:00:00 2001 From: Erik Schierboom Date: Fri, 24 May 2024 10:22:29 +0200 Subject: [PATCH] Verify exercises in CI (#18) --- .github/workflows/test.yml | 27 +++++---------------------- 1 file changed, 5 insertions(+), 22 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 712bcc1..34548d7 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,39 +1,22 @@ -# This workflow will do a clean install of the dependencies and run tests across different versions -# -# Replace with the track name -# Replace with an image to run the jobs on -# Replace with a github action to setup tooling on the image -# Replace with a cli command to install the dependencies -# -# Find Github Actions to setup tooling here: -# - https://github.com/actions/?q=setup&type=&language= -# - https://github.com/actions/starter-workflows/tree/main/ci -# - https://github.com/marketplace?type=actions&query=setup -# -# Requires scripts: -# - bin/verify-exercises - -name: / Test +name: Test on: push: branches: [main] pull_request: + branches: [main] workflow_dispatch: jobs: ci: - runs-on: + runs-on: ubuntu-22.04 steps: - name: Checkout repository uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 - - name: Use - uses: - - - name: Install project dependencies - run: + - name: Install arturo + uses: curl -sSL https://get.arturo-lang.io/latest | sh - name: Verify all exercises run: bin/verify-exercises