Skip to content

Commit

Permalink
Fixing Github action
Browse files Browse the repository at this point in the history
  • Loading branch information
Temidayo32 committed Feb 4, 2025
1 parent 8d8f563 commit e548f64
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/linux_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,22 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Remove Firefox
run: |
sudo rm -rf /usr/bin/firefox
echo "Firefox has been removed."
- name: Setup firefox
id: setup-firefox
uses: ./.github/actions/setup_firefox/ # browser-actions/setup-firefox@v1
uses: browser-actions/setup-firefox@v1 #./.github/actions/setup_firefox/
with:
firefox-version: ${{ matrix.firefox }}
- run: |
echo Installed firefox versions: ${{ steps.setup-firefox.outputs.firefox-version }}
- name: Verify Firefox Installation
run: |
echo Installed Firefox version:
which firefox
firefox --version
- name: Setup Python
uses: actions/setup-python@v5
with:
Expand Down

0 comments on commit e548f64

Please sign in to comment.