We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d91f64e commit 3581e4cCopy full SHA for 3581e4c
.github/workflows/ci.yml
@@ -63,7 +63,11 @@ jobs:
63
env:
64
LEGACY_CI: true
65
steps:
66
- - uses: actions/checkout@v3
+ - run: git config --global --add safe.directory $GITHUB_WORKSPACE
67
+ - run: git init $GITHUB_WORKSPACE
68
+ - run: git remote add origin https://github.com/rspec/rspec-collection_matchers
69
+ - run: git config --local gc.auto 0
70
+ - run: git fetch --no-tags --prune --no-recurse-submodules --depth=1 origin +$GITHUB_SHA:$GITHUB_REF
71
+ - run: git checkout --progress --force $GITHUB_REF
72
- run: script/legacy_setup.sh
- - run: ${{ matrix.container.post }}
73
- run: script/run_build
0 commit comments