We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4db2f3b commit 40491eaCopy full SHA for 40491ea
1 file changed
.github/workflows/CI.yml
@@ -49,7 +49,13 @@ jobs:
49
version: ${{ matrix.version }}
50
arch: ${{ matrix.arch }}
51
- uses: julia-actions/cache@v3
52
- - uses: julia-actions/julia-buildpkg@v1
+ - name: Build package
53
+ run: |
54
+ julia --project=. -e '
55
+ using Pkg
56
+ Pkg.add(name="BaseModelica", rev="main")
57
+ Pkg.instantiate()
58
+ '
59
- uses: julia-actions/julia-runtest@v1
60
61
sanity:
@@ -82,7 +88,13 @@ jobs:
82
88
version: '1.12'
83
89
arch: x64
84
90
85
91
92
93
94
95
96
97
86
98
87
99
- name: Sanity check ChuaCircuit
100
run: |
0 commit comments