Skip to content

enh(ios): server implementation & doc edits #14

enh(ios): server implementation & doc edits

enh(ios): server implementation & doc edits #14

Workflow file for this run

name: ci
on:
push:
branches: [main]
paths-ignore:
- "**.md"
pull_request:
branches: [main]
paths-ignore:
- "**.md"
permissions:
id-token: write
contents: read
pull-requests: read
env:
GO_VERSION: "1.21.3" # https://go.dev/dl/
GOLANGCI_LINT_VERSION: "v1.55.1" # https://github.com/golangci/golangci-lint/releases
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: ${{ env.GO_VERSION }}
- name: Lint go code
uses: golangci/golangci-lint-action@v3
working-directory: ./ios/server

Check failure on line 32 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / ci

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 32, Col: 9): Unexpected value 'working-directory'
with:
version: ${{ env.GOLANGCI_LINT_VERSION }}
skip-cache: true
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: ${{ env.GO_VERSION }}
- name: Build go code
working-directory: ./ios/server
run: go build