-
Notifications
You must be signed in to change notification settings - Fork 0
29 lines (29 loc) · 730 Bytes
/
CI.yml
File metadata and controls
29 lines (29 loc) · 730 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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@v5
- 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")