Skip to content

Commit

Permalink
Try a more brute-force approach to removing GCC
Browse files Browse the repository at this point in the history
  • Loading branch information
petervdonovan committed Jun 16, 2024
1 parent 345df42 commit 105e711
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/lsp-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
run: sudo apt-get remove clang-*
if: ${{ runner.os == 'Linux' }}
- name: Uninstall packages MacOS
run: brew uninstall --ignore-dependencies gcc
run: sudo rm -f $(which gcc)
if: ${{ runner.os == 'macOS' }}
- name: Uninstall packages Windows
shell: pwsh
Expand Down Expand Up @@ -68,7 +68,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
python-version: "3.10"
- name: Run language server Python tests without PyLint
run: ./gradlew core:integrationTest --tests org.lflang.tests.lsp.LspTests.pythonValidationTestSyntaxOnly core:integrationTestCodeCoverageReport
- name: Install pylint
Expand Down

0 comments on commit 105e711

Please sign in to comment.