Skip to content

As 3062 update attestationi api to work with ruptela payloads #89

As 3062 update attestationi api to work with ruptela payloads

As 3062 update attestationi api to work with ruptela payloads #89

Workflow file for this run

name: generate files
on:
pull_request:
branches: ["**"]
push:
branches:
- main
env:
GOPRIVATE: github.com/DIMO-Network
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
jobs:
golangci:
# Condition to skip merge commits
if: "!contains(github.event.head_commit.message, 'Merge pull request')"
runs-on: ubuntu-latest
name: lint
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: go mod tidy
run: go mod tidy
- name: go mod verify
run: go mod verify
- name: install tools
run: make tools
- name: generate graphql files
run: make generate
- name: porcelain
shell: bash
run: |
dirty_files="$(git status --porcelain)"
if [[ `git status --porcelain` ]]; then
echo "The following files are dirty after running generators:"
echo "${dirty_files}"
exit 1
fi