Merge pull request #120 from jp39/hostpath-auto #424
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: Test | |
on: | |
push: | |
branches: | |
- master | |
tags-ignore: | |
- "*" | |
paths-ignore: | |
- charts/** | |
- docs/** | |
pull_request: | |
branches: | |
- master | |
paths-ignore: | |
- charts/** | |
- docs/** | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version-file: go.mod | |
- name: Run unit tests | |
run: make test | |
- name: Run integration tests | |
run: make install:zfs test:integration |