Skip to content

Add favicon.ico

Add favicon.ico #1

Workflow file for this run

#? CV_project/.github/workflows/unit-tests.yml
---
name: unit tests
# events workflow
on:
push:
paths:
- api/**
- .github/workflows/unit-tests.yml
branches:
- main
pull_request:
paths:
- api/**
- .github/workflows/unit-tests.yml
branches:
- main
workflow_dispatch: {}
# jobs workflow
jobs:
unit-tests:
runs-on: ubuntu-latest
steps:
- name: checkout code
uses: actions/checkout@v4
- name: set up go
uses: actions/setup-go@v5
with:
go-version: 1.23.0
- name: verify go installation
run: go version
- name: install dependencies
run: go mod tidy
working-directory: ./api
- name: run unit tests
run: go test -v main.go main_test.go #./...
working-directory: ./api
- name: cache go modules
uses: actions/cache@v4
with:
path: |
~/go/pkg/mod
~/.cache/go-build
key: ${{ runner.os }}-go-${{ hashFiles('api/go.sum') }}
restore-keys: |
${{ runner.os }}-go-