Skip to content

Fix ci

Fix ci #4

name: Test Completions
on:
push:
branches: [main]
pull_request:
env:
GO111MODULE: on
jobs:
Test-Docker:

Check failure on line 12 in .github/workflows/test-completions.yml

View workflow run for this annotation

GitHub Actions / Test Completions

Invalid workflow file

The workflow is not valid. .github/workflows/test-completions.yml (Line: 12, Col: 3): The workflow must contain at least one job with no dependencies.
needs: DetermineVersion
runs-on: ubuntu-latest
name: Docker Tests
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
- uses: actions/cache@v4
with:
path: |
~/.cache/go-build
~/Library/Caches/go-build
~/AppData/Local/go-build
~/go/pkg/mod
key: ${{ runner.os }}-go-${{ matrix.go }}-${{ hashFiles('**/go.sum') }}
restore-keys: go-mod
- name: Run tests
shell: bash
run: cd completion-integrations && make all