Skip to content

Commit

Permalink
test minimina
Browse files Browse the repository at this point in the history
  • Loading branch information
piotr-iohk committed Oct 22, 2023
1 parent 4faa4d2 commit d528bd7
Showing 1 changed file with 50 additions and 0 deletions.
50 changes: 50 additions & 0 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
name: Integration

on:
push:
branches:
- main
tags:
- '*'
pull_request:
branches:
- main

jobs:
build:
runs-on: minafoundation-default-runners

steps:
- name: 🤌 Get Minimina
uses: piotr-iohk/install-minimina-action@v1
with:
stream: 'stable'

- name: 📥 Checkout
uses: actions/checkout@v3

- name: 📥 Update Git Submodules
run: |
git submodule init
git submodule update
- name: 📦 Install Nix
uses: cachix/install-nix-action@v22
with:
nix_path: nixpkgs=channel:nixos-unstable

- name: Test Minimina
run: |
minimina network create
minimina network start
sleep 10
minimina network status
minimina network info
minimina network stop
minimina network delete
# - name: 🛠️ Build Docker
# env:
# TAG: integtation-test
# run: nix-shell --run "make docker"

0 comments on commit d528bd7

Please sign in to comment.