ci: remove dep when test --auto

This commit is contained in:
Dict Xiong 2022-11-08 22:41:23 +08:00
parent 664b49c76e
commit 9fb46f8840

View File

@ -9,8 +9,8 @@ jobs:
steps:
- name: install dependencies
run: |
sudo apt update
sudo apt install -y git python3 python3-pip zsh curl inetutils-ping
sudo apt-get update
sudo apt-get install -y git python3 python3-pip zsh curl inetutils-ping
sudo pip3 install requests
- name: checkout repo
@ -103,6 +103,10 @@ jobs:
name: test of auto-install dependencies
runs-on: ubuntu-latest
steps:
- name: remove dependencies
run: |
apt-get remove zsh vim
- name: checkout repo
uses: actions/checkout@v3
with: