Skip to content

Bump actions/checkout from 5 to 6 (#43) #195

Bump actions/checkout from 5 to 6 (#43)

Bump actions/checkout from 5 to 6 (#43) #195

Workflow file for this run

name: SciChap CI
on:
push:
release:
schedule:
- cron: "0 2 * * *"
jobs:
build-test:
runs-on: ubuntu-latest
strategy:
matrix:
chapel-version: [
'2.8.0',
]
container:
image: chapel/chapel:${{ matrix.chapel-version }}
steps:
- name: Checkout SciChap
id: checkout
uses: actions/checkout@v6
- name: Using Chapel ${{ matrix.chapel-version }}, building package...
id: build
run: mason build -- --checks --warnings --debug
- name: Running tests with Mason...
id: test
run: mason test --show
- name: Running chplcheck...
id: code-check
run: chplcheck $(find . -type f -iname "*.chpl")