Skip to content

Commit

Permalink
chore: cleanups to ci
Browse files Browse the repository at this point in the history
  • Loading branch information
sighphyre committed Jan 8, 2025
1 parent 25f9678 commit 9a48fea
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,22 +47,14 @@ jobs:
ruby-version: ${{ matrix.ruby-version }}
- name: Install dependencies
run: bundle install
- name: Get test project semver (Mac/Linux)
if: runner.os != 'Windows'
id: get_semver_unix
run: |
semver=$(ruby echo_client_spec_version.rb)
echo "::set-output name=semver::$semver"
- name: Get test project semver
id: get_semver
shell: bash
run: |
semver=$(ruby echo_client_spec_version.rb)
echo "Extracted semver: $semver"
echo "::set-output name=semver::$semver"
- name: Download test cases
run: |
git clone --depth 5 --branch v${{ steps.get_semver.outputs.semver }} https://github.com/Unleash/client-specification.git client-specification
run: git clone --depth 5 --branch v${{ steps.get_semver.outputs.semver }} https://github.com/Unleash/client-specification.git client-specification
shell: bash
- name: Run tests
run: bundle exec rake
Expand Down

0 comments on commit 9a48fea

Please sign in to comment.