File tree Expand file tree Collapse file tree 1 file changed +25
-0
lines changed Expand file tree Collapse file tree 1 file changed +25
-0
lines changed Original file line number Diff line number Diff line change 1515 CARGO_REGISTRY_TOKEN : ${{ secrets.CARGO_REGISTRY_TOKEN }}
1616
1717jobs :
18+ test :
19+ name : Rust Port Tests
20+ runs-on : ubnutu-latest
21+ steps :
22+ - name : Check out the repo
23+ uses : actions/checkout@v4
24+ with :
25+ fetch-depth : 0
26+ - name : install metacall
27+ run : curl -sL https://raw.githubusercontent.com/metacall/install/master/install.sh | sh -s -- --update --yes
28+ - name : Install Rust
29+ uses : actions-rs/toolchain@v1
30+ with :
31+ toolchain : stable
32+ override : trueq
33+ - name : Set up Rust
34+ uses : actions-rs/toolchain@v1
35+ with :
36+ toolchain : stable
37+ override : true
38+ - name : Build and test the port
39+ working-directory : source/ports/rs_port
40+ run : |
41+ cargo build --verbose
42+ cargo test --verbose
1843 release :
1944 name : Release Rust Port
2045 runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments