To silence this warning: > The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2
21 lines
312 B
YAML
21 lines
312 B
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
pull_request:
|
|
branches: [ master ]
|
|
|
|
jobs:
|
|
test:
|
|
strategy:
|
|
matrix:
|
|
platform: [ubuntu-24.04, macos-14]
|
|
runs-on: ${{ matrix.platform }}
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- run: make
|
|
- run: make dist
|
|
- run: make test
|
|
|