Skip to content

Commit 985b0e5

Browse files
committed
ci: remove mypy and age installation
1 parent 703f60a commit 985b0e5

File tree

1 file changed

+1
-40
lines changed

1 file changed

+1
-40
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,6 @@ jobs:
2626
with:
2727
python-version: ${{ matrix.python-version }}
2828

29-
- name: Install age encryption tool
30-
run: |
31-
wget -q https://github.com/FiloSottile/age/releases/download/v1.2.0/age-v1.2.0-linux-amd64.tar.gz
32-
tar -xzf age-v1.2.0-linux-amd64.tar.gz
33-
sudo mv age/age /usr/local/bin/
34-
sudo mv age/age-keygen /usr/local/bin/
35-
rm -rf age age-v1.2.0-linux-amd64.tar.gz
36-
age --version
37-
3829
- name: Install Python dependencies
3930
run: |
4031
python -m pip install --upgrade pip
@@ -65,15 +56,6 @@ jobs:
6556
with:
6657
python-version: ${{ matrix.python-version }}
6758

68-
- name: Install age encryption tool
69-
run: |
70-
wget -q https://github.com/FiloSottile/age/releases/download/v1.2.0/age-v1.2.0-darwin-amd64.tar.gz
71-
tar -xzf age-v1.2.0-darwin-amd64.tar.gz
72-
sudo mv age/age /usr/local/bin/
73-
sudo mv age/age-keygen /usr/local/bin/
74-
rm -rf age age-v1.2.0-darwin-amd64.tar.gz
75-
age --version
76-
7759
- name: Install Python dependencies
7860
run: |
7961
python -m pip install --upgrade pip
@@ -115,25 +97,4 @@ jobs:
11597
run: |
11698
flake8 src/ tests/ --count --max-line-length=110 --max-complexity=10 --statistics
11799
118-
type-check:
119-
runs-on: ubuntu-latest
120-
needs: [test-linux, test-macos]
121-
continue-on-error: true
122-
123-
steps:
124-
- uses: actions/checkout@v4
125-
126-
- name: Set up Python
127-
uses: actions/setup-python@v5
128-
with:
129-
python-version: "3.12"
130-
131-
- name: Install dependencies
132-
run: |
133-
python -m pip install --upgrade pip
134-
pip install mypy
135-
pip install -e .
136-
137-
- name: Run type checking with mypy
138-
run: |
139-
mypy src/
100+

0 commit comments

Comments
 (0)