Skip to content

Commit

Permalink
ci: add .github/workflows/tests.yml
Browse files Browse the repository at this point in the history
This runs against rakudo-star:latest for now. We'll need to find
a way to test against a list of recent versions to detect regressions.
  • Loading branch information
dontlaugh committed Oct 7, 2024
1 parent c2e5a39 commit f7457a0
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Run test script

on:
push:
pull_request:
branches:
- main

jobs:
test-script:
runs-on: ubuntu-latest

container:
image: rakudo-star:latest

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Run Test Script
run: sh ./bin/test-script.sh

0 comments on commit f7457a0

Please sign in to comment.