Added a Helm chart #20
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: CI | |
on: | |
pull_request: | |
branches: | |
- main | |
paths-ignore: | |
- "*.md" | |
- ".earthlyignore" | |
- "LICENSE" | |
concurrency: | |
cancel-in-progress: true | |
group: "Only run one instance of CI for PR #${{ github.event.number }}" | |
jobs: | |
verify-pr: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- name: Install Earthly | |
uses: earthly/actions-setup@be3fe0c1f84e9776b5a184d21bf7a4a779ea2e6b # v1.0.8 | |
with: | |
# renovate: earthly-version | |
version: v0.8.4 | |
- name: Lint Go code | |
run: earthly --ci +lint --OUTPUT_FORMAT=github-actions | |
- name: Run Go tests | |
run: earthly --ci +test --OUTPUT_FORMAT=github-actions | |
- name: Run a build | |
run: | | |
# Generate a fake git tag | |
GIT_TAG=$(git describe --tags --match "v[[:digit:]]*.[[:digit:]]*.[[:digit:]]" | sed 's/\(.*\)-\(.*\)-\(.*\)/\1-gen.\2+\3/') | |
earthly --ci --output +all --GIT_TAG="$GIT_TAG" | |
echo "Build outputs:" | |
find outputs -type f -exec ls -lh "{}" \; | |
find outputs -type f ! -name '*.t*' -exec file "{}" \; | |
docker image ls gha-exporter |