Skip to content

Commit 28a92a6

Browse files
committed
adding workflow
1 parent f3ea35d commit 28a92a6

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.github/workflow/rust-ci.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,16 @@ jobs:
1313
name: Build and Test
1414
runs-on: ubuntu-latest
1515

16+
container:
17+
image: ubuntu:22.04 # Specifies the Ubuntu image for the container
18+
options: --user root # Runs commands as root
19+
1620
steps:
21+
- name: Install dependencies
22+
run: |
23+
apt update
24+
apt install -y curl git clang pkg-config libssl-dev
25+
1726
- name: Checkout repository
1827
uses: actions/checkout@v4
1928

0 commit comments

Comments
 (0)