File tree Expand file tree Collapse file tree 3 files changed +34
-4
lines changed
Expand file tree Collapse file tree 3 files changed +34
-4
lines changed Original file line number Diff line number Diff line change 1- name : Test
1+ name : Tests
22
33on :
44 push :
1515 DOCKER_BUILDKIT : 1
1616
1717jobs :
18- test :
19- name : Test
18+ unit- test :
19+ name : Unit Test
2020 runs-on : ubuntu-latest
2121
2222 strategy :
3131 - name : Run Unit Tests
3232 run : docker build --target unit_test_${{ matrix.build-type }} -f Dockerfile.dev -t metacall/metassr:unit .
3333
34+ integration-test :
35+ name : Integration Test
36+ runs-on : ubuntu-latest
37+
38+ strategy :
39+ fail-fast : false
40+ matrix :
41+ build-type : [debug, release]
42+
43+ steps :
44+ - name : Checkout repository
45+ uses : actions/checkout@v4
46+
3447 - name : Bundler Integration Tests
3548 run : docker build --target integration_test_${{ matrix.build-type }} -f Dockerfile.dev -t metacall/metassr:integration .
3649
Original file line number Diff line number Diff line change 11target
22node_modules
33dist
4- .vscode
Original file line number Diff line number Diff line change 1+ {
2+ // Use IntelliSense to learn about possible attributes.
3+ // Hover to view descriptions of existing attributes.
4+ // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+ "version" : " 0.2.0" ,
6+ "configurations" : [
7+ {
8+ "name" : " Debug MetaSSR [Build]" ,
9+ "type" : " lldb" ,
10+ "request" : " launch" ,
11+ "program" : " ${workspaceFolder}/target/debug/metassr" ,
12+ "args" : [" --debug-mode=metacall" , " build" ],
13+ "cwd" : " ${workspaceFolder}" ,
14+ "env" : {},
15+ "sourceLanguages" : [" rust" ]
16+ }
17+ ]
18+ }
You can’t perform that action at this time.
0 commit comments