Skip to content

Commit 331d54e

Browse files
committed
ci: add age back for unit tests
1 parent 985b0e5 commit 331d54e

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/test.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,14 @@ 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+
2937
- name: Install Python dependencies
3038
run: |
3139
python -m pip install --upgrade pip
@@ -56,6 +64,14 @@ jobs:
5664
with:
5765
python-version: ${{ matrix.python-version }}
5866

67+
- name: Install age encryption tool
68+
run: |
69+
wget -q https://github.com/FiloSottile/age/releases/download/v1.2.0/age-v1.2.0-darwin-amd64.tar.gz
70+
tar -xzf age-v1.2.0-darwin-amd64.tar.gz
71+
sudo mv age/age /usr/local/bin/
72+
sudo mv age/age-keygen /usr/local/bin/
73+
rm -rf age age-v1.2.0-darwin-amd64.tar.gz
74+
5975
- name: Install Python dependencies
6076
run: |
6177
python -m pip install --upgrade pip

0 commit comments

Comments
 (0)