Skip to content

Merge pull request #291 from platformsh/ralt-patch-1 #760

Merge pull request #291 from platformsh/ralt-patch-1

Merge pull request #291 from platformsh/ralt-patch-1 #760

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v6
with:
go-version-file: ./go.mod
- name: Create fake PHP and .phar files
run: |
# These are needed so that the linter does not complain
mkdir -p internal/legacy/archives
touch internal/legacy/archives/platform.phar
touch internal/legacy/archives/php_windows_amd64
touch internal/legacy/archives/php_linux_amd64
touch internal/legacy/archives/php_linux_arm64
touch internal/legacy/archives/php_darwin_amd64
touch internal/legacy/archives/php_darwin_arm64
touch internal/config/embedded-config.yaml
- name: Run lint-gomod
run: make lint-gomod
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v8
with:
version: v2.4
args: --timeout=5m
- name: Run tests
run: make test
- name: Check goreleaser config
run: make goreleaser-check