Skip to content

chore: Un-comment Cookiecutter installation and test steps in workflow #14

chore: Un-comment Cookiecutter installation and test steps in workflow

chore: Un-comment Cookiecutter installation and test steps in workflow #14

Workflow file for this run

---
# based on https://github.com/mvdan/github-actions-golang
name: test
permissions:
contents: read
on:
pull_request:
branches: ["main"]
paths-ignore: ["docs/**"]
push:
branches: ["main"]
paths-ignore: ["docs/**"]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Go
uses: actions/setup-go@v5
with:
go-version-file: ./go.mod
- name: Downloads the dependencies
run: make download
- name: Lints all code with golangci-lint
run: make lint
- name: Runs all tests
run: make test
- name: Install Cookiecutter
run: pip install cookiecutter
- name: Cookiecutter test
run: make test-cookiecutter