File tree Expand file tree Collapse file tree 1 file changed +40
-0
lines changed
Expand file tree Collapse file tree 1 file changed +40
-0
lines changed Original file line number Diff line number Diff line change 1+ name : LocalStack Dagger Module Tests
2+
3+ on :
4+ push :
5+ branches : [ main ]
6+ pull_request :
7+ branches : [ main ]
8+
9+ jobs :
10+ test :
11+ name : Run Tests
12+ runs-on : ubuntu-latest
13+
14+ steps :
15+ - name : Check out repository
16+ uses : actions/checkout@v4
17+
18+ - name : Set up Python
19+ uses : actions/setup-python@v5
20+ with :
21+ python-version : ' 3.10'
22+ cache : ' pip'
23+
24+ - name : Install dependencies
25+ run : |
26+ python -m pip install --upgrade pip
27+ pip install boto3 requests dagger-io
28+
29+ - name : " Set up Dagger"
30+ id : " setup-dagger"
31+ uses : " camptocamp/setup-dagger@v1"
32+ with :
33+ module-path : " ."
34+
35+ - name : " Run tests"
36+ run : |
37+ cd tests
38+ dagger call all --auth-token env:LOCALSTACK_AUTH_TOKEN
39+ env :
40+ LOCALSTACK_AUTH_TOKEN : ${{ secrets.LOCALSTACK_AUTH_TOKEN }}
You can’t perform that action at this time.
0 commit comments