Skip to content

change the default wait and poll intervals #289

change the default wait and poll intervals

change the default wait and poll intervals #289

Workflow file for this run

name: Build and Test
on:
pull_request:
paths-ignore:
- '*.md'
- 'website/*'
push:
branches:
- main
- staging
paths-ignore:
- '*.md'
- 'website/*'
permissions:
contents: read
pull-requests: read
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
strategy:
matrix:
go-version: ["1.21.x"]
steps:
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- uses: actions/checkout@v4
with:
fetch-depth: 2
- name: terraform fmt
run: |
make tflint
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: v1.55.2
only-new-issues: true
build:
name: Build
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- {os: ubuntu-latest, go: 1.21}
- {os: windows-latest, go: 1.21}
- {os: macos-latest, go: 1.21}
timeout-minutes: 10
steps:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Setup terraform
uses: hashicorp/setup-terraform@v3
- name: Build
run: |
make
- name: Test pre-requisites (Linux)
run: sudo apt-get -y install xsltproc
if: runner.os == 'Linux'
- name: Test pre-requisites (MacOS)
run: brew install libxslt
if: runner.os == 'MacOS'
- name: Test pre-requisites (Windows)
run: choco install xsltproc
if: runner.os == 'Windows'
- name: Test
run: |
make test
- uses: actions/upload-artifact@v4
with:
name: terraform-provider-libvirt-${{ matrix.os }}
path: ${{ github.workspace }}/terraform-provider-libvirt*