Skip to content

build(deps): bump debian from stable-20240926 to stable-20241016 in the debian group #929

build(deps): bump debian from stable-20240926 to stable-20241016 in the debian group

build(deps): bump debian from stable-20240926 to stable-20241016 in the debian group #929

Workflow file for this run

name: pint ci
on:
pull_request:
branches:
- main
permissions:
pull-requests: write
jobs:
ci:
runs-on: ubuntu-latest
if: ${{ github.event.pull_request.head.repo.full_name == 'cloudflare/pint' }}
steps:
- name: Check out code
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
with:
show-progress: false
fetch-depth: 0
- name: Fetch main branch
run: |
git fetch origin main
git checkout main
git fetch origin $GITHUB_HEAD_REF
git checkout $GITHUB_HEAD_REF --
- name: Set up Go
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
with:
go-version-file: go.ver
cache: false
- name: Compile pint
run: make build
- name: Run pint ci
run: ./pint -l debug -c .github/pint/pint.hcl ci
env:
GITHUB_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}