-
-
Notifications
You must be signed in to change notification settings - Fork 0
43 lines (35 loc) · 1005 Bytes
/
rust.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
name: Build
on:
push:
branches: [ "main", "dev" ]
pull_request:
branches: [ "main", "dev" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Cache cargo dependencies
uses: actions/cache@v4
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Build
run: cargo build --verbose
- name: Setup SSH for tests
run: |
sudo service ssh start
mkdir ${HOME}/.ssh
ssh-keyscan -H localhost > ${HOME}/.ssh/known_hosts
ssh-keygen -t ed25519 -N "" -f ${HOME}/.ssh/id_ed25519
cat ${HOME}/.ssh/id_ed25519.pub >> $HOME/.ssh/authorized_keys
echo "127.0.0.1 localhost2" | sudo tee -a /etc/hosts > /dev/null
- name: Run tests
run: cargo test --verbose