cnf ran: update readme to match current state #689
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Makefile CI | |
on: | |
workflow_dispatch: | |
push: | |
pull_request: | |
branches: | |
- main | |
- 'release-\d.\d\d' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
SHELL: /bin/bash | |
steps: | |
- name: Set up Go 1.22 | |
uses: actions/setup-go@v3 | |
with: | |
go-version: 1.22.6 | |
- uses: actions/checkout@v4 | |
- name: Run lint | |
run: make lint | |
- name: Install | |
run: make install-ginkgo | |
- name: Run ginkgo Dry Run | |
run: ginkgo run -vv -r --dry-run ./tests/ | |
env: | |
ECO_DRY_RUN: true | |
- name: Run unit tests | |
run: make test |