fix: fails unit-test and enable unit-test on CI #149
Workflow file for this run
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: driver | |
on: | |
- push | |
- pull_request | |
jobs: | |
test-suite: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-go@v2 | |
with: | |
go-version: "^1.15" | |
- name: Run tests | |
run: go test ./... | |
- name: Run vetting/linting checks | |
run: go vet ./... | |
build: | |
if: startsWith(github.ref, 'refs/tags/v') | |
runs-on: ubuntu-latest | |
needs: test-suite | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Get tag | |
id: tag | |
uses: dawidd6/action-get-tag@v1 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v1 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v1 | |
- name: Login to DockerHub | |
uses: docker/login-action@v1 | |
with: | |
username: ${{ secrets.DOCKER_HUB_USERNAME }} | |
password: ${{ secrets.DOCKER_HUB_TOKEN }} | |
- name: Build and push (Dockerhub) | |
uses: docker/build-push-action@v2 | |
with: | |
file: Dockerfile | |
push: true | |
build-args: | | |
VERSION=${{ steps.tag.outputs.tag }} | |
tags: | | |
civo/csi:${{ steps.tag.outputs.tag }} | |
civo/csi:latest | |
- name: Build and push (Google Container Registry) | |
uses: RafikFarhad/push-to-gcr-github-action@v5-beta | |
with: | |
gcloud_service_key: ${{ secrets.GCLOUD_SERVICE_KEY }} | |
registry: gcr.io | |
project_id: consummate-yew-302509 | |
image_name: csi | |
image_tag: latest,${{ steps.tag.outputs.tag }} |