-
Notifications
You must be signed in to change notification settings - Fork 0
41 lines (37 loc) · 925 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
name: Rust
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
workflow_dispatch:
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
container:
image: ghcr.io/${{ github.repository }}/ci-image@sha256:e58e9f1d205535b2ae12e493d1e0bc5fec14c392709759f61d98c819882d0854
steps:
- uses: actions/checkout@v4
- name: Check dfx
shell: bash
run: |
set -eExuo pipefail
source "/root/.local/share/dfx/env"
dfx --version
- name: Clone Ledger Map
shell: bash
run: |
set -eExuo pipefail
(
cd ..
git clone --depth 1 https://github.com/decent-cloud/ledger-map.git
cd -
)
- name: Build and test
shell: bash
run: |
set -eExuo pipefail
source "/root/.local/share/dfx/env"
cargo make