Skip to content

Commit

Permalink
fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
zzhlogin committed Feb 12, 2024
1 parent 9d94dac commit d878928
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/pr_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ jobs:
- name: Install libsnappy-dev
if: ${{ matrix.tox-environment == 'lint' }}
run: |
if [[ "${{ matrix.os }}" == "ubuntu-latest" ]]; then
if [ "${{ matrix.os }}" == ubuntu-latest ]; then
sudo apt-get update && sudo apt-get install -y libsnappy-dev
elif [[ "${{ matrix.os }}" == "macos-latest" ]]; then
elif [ "${{ matrix.os }}" == macos-latest ]; then
brew install snappy
elif [[ "${{ matrix.os }}" == "windows-latest" ]]; then
elif [ "${{ matrix.os }}" == windows-latest ]; then
choco install snappy
fi
Expand Down

0 comments on commit d878928

Please sign in to comment.