Skip to content

Merge pull request #2 from MinaFoundation/s3-fallback #24

Merge pull request #2 from MinaFoundation/s3-fallback

Merge pull request #2 from MinaFoundation/s3-fallback #24

Workflow file for this run

name: Build
on:
push:
branches:
- main
tags:
- '*'
pull_request:
branches:
- main
jobs:
build:
runs-on: minafoundation-default-runners
steps:
- name: 📥 Checkout
uses: actions/checkout@v3
- name: 📦 Install Nix
uses: cachix/install-nix-action@v22
with:
nix_path: nixpkgs=channel:nixos-unstable
- name: 🛠️ Build
run: nix-shell --run "make build"
- name: 🛠️ Build Docker (submission-updater)
env:
TAG: uptime-service-backend-test
run: nix-shell --run "make docker-standalone"
- name: 🧪 Test
run: nix-shell --run "make test"