Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions .github/workflows/canister-snapshots.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: canister-snapshots

on:
push:
branches: [master]
pull_request:
paths:
- rust/canister-snapshots/**
- .github/workflows/canister-snapshots.yml

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
rust-canister-snapshots:
runs-on: ubuntu-24.04
container: ghcr.io/dfinity/icp-dev-env-rust:1.0.0
env:
ICP_CLI_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
- name: Deploy and test
working-directory: rust/canister-snapshots
run: |
icp network start -d
icp deploy
make test
44 changes: 0 additions & 44 deletions .github/workflows/rust-canister-snapshots-example.yaml

This file was deleted.

6 changes: 0 additions & 6 deletions rust/canister-snapshots/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@
.DS_Store
**/.DS_Store

# dfx temporary files
.dfx/

# generated files
**/declarations/

Expand All @@ -20,6 +17,3 @@ target/
node_modules/
dist/
.svelte-kit/

# environment variables
.env
Loading
Loading