Skip to content

Commit d550936

Browse files
authored
Merge pull request #2 from falcucci/push-uyqzyyqqnxxm
2 parents 6f168ce + c5ef718 commit d550936

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-0
lines changed

.github/workflows/ci.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
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

src/fs/mod.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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",

0 commit comments

Comments
 (0)