Skip to content

Commit

Permalink
Switch webdriver setup to script
Browse files Browse the repository at this point in the history
Mimicing thirtyfour setup
  • Loading branch information
Sparrow0hawk committed Jan 27, 2024
1 parent de1dca3 commit 3003c0b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,6 @@ jobs:
- name: Run clippy check
run: cargo clippy
- name: Install geckodriver and start
run: |
sudo apt-get update
sudo apt-get install firefox
geckodriver &
run: ./ci/ubuntu-latest-firefox.sh
- name: Run tests
run: cargo test
5 changes: 5 additions & 0 deletions ci/ubuntu-latest-firefox.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/usr/bin/env bash

sudo apt-get update
sudo apt-get install firefox
geckodriver &

0 comments on commit 3003c0b

Please sign in to comment.