Skip to content

Commit

Permalink
rename test.yml to verify.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
drkameleon committed Nov 7, 2023
1 parent 3666d6c commit 5663c69
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions .github/workflows/verify.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: "Verify Packages"
on:
pull_request:
paths-ignore:
- '*.html'
- '*.yml'
- '*.md'

defaults:
run:
shell: bash -l {0}

jobs:
build:
name: "Verify Packages"
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-latest
version:
- full
steps:
- name: "Cancel similar actions in progress"
uses: styfle/[email protected]
with:
access_token: ${{ github.token }}

- name: "Setup Arturo"
uses: arturo-lang/arturo-action@main

- name: "Checkout"
uses: actions/checkout@main
with:
submodules: recursive

- name: Run unit tests
run: |
echo "${{ github.workspace }}/bin" >> $GITHUB_PATH
arturo tools/ci.art
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 5663c69

Please sign in to comment.