Skip to content

Update module github.com/nullify-platform/cli to v0.10.1 #52

Update module github.com/nullify-platform/cli to v0.10.1

Update module github.com/nullify-platform/cli to v0.10.1 #52

Workflow file for this run

name: Build, Test and Format
on:
pull_request:
env:
NULLIFY_VERSION: 0.0.0
jobs:
build:
name: Build, Test and Format
runs-on: ubuntu-22.04
permissions:
contents: write
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Nullify CLI
run: |
wget -q https://github.com/Nullify-Platform/cli/releases/download/v${{ env.NULLIFY_VERSION }}/nullify_linux_amd64_${{ env.NULLIFY_VERSION }} -O nullify
chmod +x nullify
- name: Test Nullify CLI
run: |
./nullify -d
- name: Format README
run: |
npm install -g markdown-table-formatter
markdown-table-formatter README.md
- name: Commit Changes
uses: stefanzweifel/git-auto-commit-action@v5
with:
file_pattern: README.md
commit_message: update readme