Skip to content

Merge pull request #48 from signaux-faibles/feat/removeAssignee #207

Merge pull request #48 from signaux-faibles/feat/removeAssignee

Merge pull request #48 from signaux-faibles/feat/removeAssignee #207

Workflow file for this run

name: CI
on:
push:
branches:
permissions:
contents: read
env:
GOFLAGS: -mod=readonly
jobs:
build_libwekan:
name: Build & Test
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
# - name: Lint
# uses: golangci/golangci-lint-action@v3
# with:
# version: latest
# build-tags:
# - integration
# - name: Run Codacy Analysis CLI
# uses: codacy/codacy-analysis-cli-action@v4
- name: Unit Tests
run: go test ./... -v -tags integration