Skip to content

Initial version of frontend #305

Initial version of frontend

Initial version of frontend #305

Workflow file for this run

name: tests
on:
- push
- pull_request
jobs:
code:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version-file: 'go.mod'
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: latest
args: --config .golangci.yml
- name: Run tests
run: make test-cov
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
proto:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: bufbuild/buf-setup-action@v1
- uses: bufbuild/buf-lint-action@v1
with:
input: proto
config: proto/buf.yaml
image:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Expose GitHub Runtime
uses: crazy-max/ghaction-github-runtime@v2
- name: Build && test client image
run: |
docker buildx create --use --driver=docker-container
docker buildx build --load \
-t ghcr.io/c4t-but-s4d/neo_env:latest \
--cache-to type=gha,mode=max \
--cache-from type=gha \
--target image-full \
-f client_env/Dockerfile \
.
make test-image