-
Notifications
You must be signed in to change notification settings - Fork 1
37 lines (33 loc) · 866 Bytes
/
ci.yml
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
30
31
32
33
34
35
36
37
name: Continuous Integration
on:
pull_request:
push:
branches:
- main
- 'releases/*'
jobs:
test-action:
name: GitHub Actions Test
runs-on: ubuntu-latest
timeout-minutes: 60
permissions:
contents: read
pull-requests: write
steps:
- name: Checkout
id: checkout
uses: actions/checkout@v3
- name: Test openmodelica-library-testing
id: test-action
uses: ./
with:
package-name: MyLibrary
package-version: 1.0.0
modelica-file: examples/MyLibrary/package.mo
dependencies: |
Modelica 4.0.0+maint.om
omc-version: stable
reference-files-dir: examples/ReferenceFiles
reference-files-format: csv
reference-files-delimiter: .
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}