Little helper to run CNCF's k3s in Docker
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
k3d/.github/workflows/release.yaml

28 lines
607 B

name: Release
on: workflow_dispatch
jobs:
release:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Setup Go environment
uses: actions/setup-go@v2
with:
go-version: "1.17.x"
- name: Setup Docker
uses: docker-practice/actions-setup-docker@master
with:
docker_version: "20.10"
- name: Setup CI Tools
run: make ci-setup
- name: lint
run: make lint
- name: test
run: make test
- name: e2e
run: make e2e
- name: build
run: make build-cross