CI with a container image #33
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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:6b789968bd7db8591b8f2847f81bc89c4a8a68b3772569e16eb7ba253f8b8a9d | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Check dfx | |
env: | |
# dfx requires XDG_DATA_HOME to be set | |
XDG_DATA_HOME: /usr/local | |
run: | | |
dfxvm default 0.22.0 | |
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 | |
env: | |
# dfx requires XDG_DATA_HOME to be set | |
XDG_DATA_HOME: /usr/local | |
run: cargo make |