Skip to content

fix(generate): dotfiles must not be ignored while detecting existing files. #3424

fix(generate): dotfiles must not be ignored while detecting existing files.

fix(generate): dotfiles must not be ignored while detecting existing files. #3424

Workflow file for this run

# Copyright 2023 Terramate GmbH
# SPDX-License-Identifier: MPL-2.0
name: ci-experimental
on:
pull_request:
paths-ignore:
- 'docs/**'
- 'makefiles/**'
- '.github/**'
- '**/*.tm.hcl'
- '.tool-versions'
jobs:
build_test:
name: Build and Test
runs-on: ${{ matrix.os }}
timeout-minutes: 30
strategy:
matrix:
os: ["windows-2022"]
go: ["1.20"]
steps:
- uses: actions/checkout@v4
with:
ref: ${{github.event.pull_request.head.ref}}
repository: ${{github.event.pull_request.head.repo.full_name}}
fetch-depth: 0
- uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go }}
- name: configure git
run: git config --global core.autocrlf false
- name: make build
run: make build
- name: make generate
run: ./bin/terramate.exe generate
- name: make test
run: make test
- uses: Kesin11/actions-timeline@v1