diff options
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/ci.yml | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7751893..c596d9a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,6 +26,10 @@ jobs:      runs-on: ${{ matrix.os }}      steps: +    - uses: actions/checkout@v4 +      with: +        fetch-depth: 0 # Make "git describe" work +      - name: Install Go ${{ matrix.go }}        uses: actions/setup-go@v5        with: @@ -35,10 +39,6 @@ jobs:      # https://github.com/actions/runner/issues/1188      - run: ls -l /proc/self/fd -    - uses: actions/checkout@v4 -      with: -        fetch-depth: 0 # Make "git describe" work -      # CI platform specific setup steps happen here      - run: sudo apt-get install -qq fuse3 libssl-dev | 
