Add integration tests for important commands #263
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
permissions: | |
contents: read | |
env: | |
GOPRIVATE: github.com/platformsh | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v3 | |
- name: Setup Go | |
uses: actions/setup-go@v3 | |
with: | |
# do not enable cache here, because golangci-linter | |
# has its own internal cache with better performance | |
go-version: 1.22.x | |
- name: Create fake PHP and .phar files | |
run: | | |
# These are needed so that the linter does not complain | |
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: Add SSH Go Module Private Key | |
env: | |
SSH_AUTH_SOCK: /tmp/ssh_agent.sock | |
run: | | |
mkdir -p ~/.ssh | |
ssh-keyscan github.com >> ~/.ssh/known_hosts | |
ssh-agent -a $SSH_AUTH_SOCK > /dev/null | |
ssh-add - <<< "${{ secrets.GO_MODULE_PRIVATE_KEY }}" | |
echo "SSH_AUTH_SOCK=$SSH_AUTH_SOCK" >> $GITHUB_ENV | |
- name: Setup access for private go modules | |
run: | | |
git config --global url."ssh://git@github.com/".insteadOf https://github.com/ | |
- name: Run linter | |
uses: golangci/golangci-lint-action@v3 | |
with: | |
version: v1.59 | |
- name: Run tests | |
run: make test |