Files
provider-k3s/.github/workflows/pull_request.yaml
Tyler Gillson 6a9fad59f9 fix: set 'cluster-init: false' when explicitly disabled via ProviderOptions (#83)
* fix: set 'cluster-init: false' when explicitly disabled via ProviderOptions
* ci: run unit tests
---------

Signed-off-by: Tyler Gillson <tyler.gillson@gmail.com>
2024-07-08 07:15:09 -06:00

27 lines
472 B
YAML

name: Pull Request
on:
pull_request:
push:
branches:
- main
permissions:
contents: read
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: docker-practice/actions-setup-docker@master
- uses: earthly/actions-setup@v1
with:
version: "v0.6.30"
- run: earthly --ci +lint
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: go test ./...