-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3666d6c
commit 5663c69
Showing
1 changed file
with
42 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} |