Basic client and server apps. #41

Open
pztrn wants to merge 32 commits from 2-client-basics into feature/1-basics
Showing only changes of commit dc3a74cfb6 - Show all commits

View File

@ -10,17 +10,20 @@ jobs:
steps: steps:
- name: "checkout source" - name: "checkout source"
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: "cache go dependencies" - name: "restore cache with go things"
uses: actions/cache@v4 uses: actions/cache/restore@v4
with: with:
path: | path: /home/container
/home/container/go
/home/container/golangci-lint
key: bunker-go-cache key: bunker-go-cache
- name: "lint" - name: "lint"
uses: docker://code.pztrn.name/containers/go-toolbox:v8 uses: docker://code.pztrn.name/containers/go-toolbox:v8
with: with:
command: "/usr/local/bin/task lint" command: "/usr/local/bin/task lint"
- name: "save cache with go things"
uses: actions/cache/save@v4
with:
path: /home/container
key: bunker-go-cache
# Tests: # Tests:
# runs-on: "ubuntu-22.04" # runs-on: "ubuntu-22.04"