Skip to content

chore(deps): bump golang.org/x/text from 0.36.0 to 0.37.0 #119

chore(deps): bump golang.org/x/text from 0.36.0 to 0.37.0

chore(deps): bump golang.org/x/text from 0.36.0 to 0.37.0 #119

Workflow file for this run

name: Real Project Test
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
permissions:
contents: read
jobs:
e2e-test:
name: e2e-test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
submodules: 'true'
- uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
with:
go-version-file: 'go.mod'
- name: Run tests
run: go test -v ./tests
env:
GITHUB_PAT: ${{ github.token }}
- name: Check if the snapshot is different
run: |
git diff --exit-code
if [ $? -eq 1 ]; then
echo "The snapshot is different"
exit 1
fi