File tree Expand file tree Collapse file tree 2 files changed +26
-0
lines changed
Expand file tree Collapse file tree 2 files changed +26
-0
lines changed Original file line number Diff line number Diff line change 1+ name : CI
2+
3+ on :
4+ push :
5+ branches : [ main ]
6+ pull_request :
7+ branches : [ main ]
8+
9+ env :
10+ CARGO_TERM_COLOR : always
11+
12+ jobs :
13+ build :
14+
15+ runs-on : ${{ matrix.os }}
16+ strategy :
17+ matrix :
18+ os : [ubuntu-latest, macos-latest]
19+
20+ steps :
21+ - uses : actions/checkout@v3
22+ - name : Build
23+ run : cargo build --verbose
24+ - name : Run tests
25+ run : cargo test --verbose
Original file line number Diff line number Diff line change @@ -191,6 +191,7 @@ pub fn get_file_type(package_type: PackageType) -> &'static str {
191191 PackageType :: SidechainCli => "zip" ,
192192 PackageType :: CardanoNode => "tar.gz" ,
193193 PackageType :: CardanoCli => "tar.gz" ,
194+ PackageType :: Jujutsu => "tar.gz" ,
194195 PackageType :: Mithril => "tar.gz" ,
195196 PackageType :: Scrolls => "tar.gz" ,
196197 PackageType :: Zellij => "tar.gz" ,
You can’t perform that action at this time.
0 commit comments