diff options
| author | Léo Lam <leo@leolam.fr> | 2020-09-24 19:03:38 +0200 |
|---|---|---|
| committer | Léo Lam <leo@leolam.fr> | 2020-09-24 19:03:38 +0200 |
| commit | 36188d30d9268a7b7569ec9be227a1d4b16046af (patch) | |
| tree | 282e9634812194952c24b9d64fafaccb7055249e /.github/workflows | |
| parent | 2b8c5cc58a55a734b05066ad100c5c045ac49825 (diff) | |
ci: Fix apt install call in `check` workflow
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/check.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 372a4754..1b46541b 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -12,9 +12,9 @@ jobs: - uses: actions/checkout@v2 - run: git submodule update --init --recursive - name: Install pip - run: sudo apt update && sudo apt install -y python3-pip python3-setuptools gpg + run: sudo apt update && sudo apt install -y python3-pip python3-setuptools gpg wget - name: Install tool dependencies - run: sudo python3 -m pip install capstone colorama cxxfilt pyelftools wget + run: sudo python3 -m pip install capstone colorama cxxfilt pyelftools - name: Download executable run: wget https://static.zeldamods.org/botw/16A91992BBA71201E98756F3BC8F5D2F.elf.gpg - name: Decrypt executable |
