We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 148c805 commit e077205Copy full SHA for e077205
1 file changed
.github/workflows/test.yml
@@ -0,0 +1,21 @@
1
+name: Verifier
2
+
3
+on: [push]
4
5
+jobs:
6
+ test:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - name: Set up Python
10
+ uses: actions/setup-python@v5
11
+ with:
12
+ python-version: "3.10"
13
+ - uses: actions/checkout@v4
14
+ - name: Install dependencies
15
+ run: |
16
+ sudo apt install -y build-essential git curl
17
+ sudo curl -o /usr/bin/testssl.sh https://raw.githubusercontent.com/testssl/testssl.sh/refs/heads/3.2/testssl.sh
18
+ sudo chmod +x /usr/bin/testssl.sh
19
+ pip install -e .[default]
20
+ - name: Run tests
21
+ run: make tests
0 commit comments