Skip to content

Commit

Permalink
Fix workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
koba-e964 committed Feb 25, 2024
1 parent 639bae7 commit 1d972ba
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/cargo-bloat.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: Rust (cargo bloat)

on:
"on":
workflow_dispatch:
push:
branches: [master]
pull_request:
Expand Down
11 changes: 10 additions & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: Rust

on:
"on":
workflow_dispatch:
push:
branches: [master]
pull_request:
Expand All @@ -15,6 +16,14 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: install OpenSSH
run: |
curl -o openssh-9.6p1.tar.gz https://codeload.github.com/openssh/openssh-portable/tar.gz/refs/tags/V_9_6_P1
tar zxvf openssh-9.6p1.tar.gz
cd openssh-portable-V_9_6_P1
./configure
make
make install
- uses: actions/checkout@v4
- name: cargo version
run: cargo --version
Expand Down

0 comments on commit 1d972ba

Please sign in to comment.