-
Notifications
You must be signed in to change notification settings - Fork 74
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update GH action workflows to install libmagic on linux
[skip ci]
- Loading branch information
1 parent
697283d
commit e009db1
Showing
4 changed files
with
14 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,6 +18,9 @@ jobs: | |
- uses: actions/[email protected] | ||
with: | ||
python-version: '3.11' | ||
- name: Install libmagic | ||
run: | | ||
sudo apt-get install libmagic1 libmagic-dev | ||
- name: Update Rust Beta | ||
run: | | ||
rustup update beta | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,6 +24,9 @@ jobs: | |
- uses: actions/[email protected] | ||
with: | ||
python-version: '3.11' | ||
- name: Install libmagic | ||
run: | | ||
sudo apt-get install libmagic1 libmagic-dev | ||
- name: Install and Run Redis | ||
run: | | ||
sudo apt-get install redis-server | ||
|