-
Notifications
You must be signed in to change notification settings - Fork 0
122 lines (101 loc) · 3.4 KB
/
actions.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
name: CI/CD Workflow
on: [push, pull_request]
env:
# Twitch Developer Credentials
CLIENT_ID: ${{ secrets.CLIENT_ID }}
CLIENT_SECRET: ${{ secrets.CLIENT_SECRET }}
# Twitch Bot User Credentials
BOT_USER_ID: ${{ vars.BOT_USER_ID }}
BOT_OAUTH_TOKEN: ${{ secrets.BOT_OAUTH_TOKEN }}
# Virus Total Developer API Key
VIRUS_TOTAL_API_KEY: ${{ secrets.VIRUS_TOTAL_API_KEY }}
# AWS Credentials
REGION_NAME: ${{ vars.REGION_NAME }}
AWS_REGION: ${{ vars.AWS_REGION }}
AWS_DEFAULT_REGION: ${{ vars.AWS_DEFAULT_REGION }}
API_GATEWAY_INVOKE_URL: ${{ vars.API_GATEWAY_INVOKE_URL }}
API_GATEWAY_ROUTE: ${{ vars.API_GATEWAY_ROUTE }}
jobs:
setup:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install poetry
run: |
python -m pip install poetry
- name: Configure poetry
run: |
poetry config virtualenvs.in-project true
- name: Install dependencies
run: |
poetry install --with dev
- name: Run isort
id: isort
uses: isort/isort-action@master
with:
configuration: "--check-only --diff"
sortPaths: "."
- name: Run black
uses: psf/black@stable
with:
options: "--check --diff --verbose --color"
src: "."
summary: true
tests:
name: Test
runs-on: ubuntu-latest
needs: setup
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install poetry
run: |
python -m pip install poetry
- name: Configure poetry
run: |
poetry config virtualenvs.in-project true
- name: Install dependencies
run: |
poetry install --with dev
- name: Run coverage
run: |
coverage run -m pytest | tee coverage_output.txt
- name: Run tests
run: |
poetry run pytest --tb=short --disable-pytest-warnings | tee pytest_output.txt
- name: Display test results in summary
if: always()
run: |
echo "### 🎉 Test Summary Report 🎉" >> $GITHUB_STEP_SUMMARY
echo "" >> $GITHUB_STEP_SUMMARY
# Display results in table format
echo "| Status | Test |" >> $GITHUB_STEP_SUMMARY
echo "| ------ | ---- |" >> $GITHUB_STEP_SUMMARY
# Determine the overall result
if grep -q "failed" pytest_output.txt; then
echo "| ❌ | Some tests failed |" >> $GITHUB_STEP_SUMMARY
else
echo "| ✅ | All tests passed |" >> $GITHUB_STEP_SUMMARY
fi
# Add coverage output
echo "" >> $GITHUB_STEP_SUMMARY
echo "### 🚧 Coverage Output 🚧" >> $GITHUB_STEP_SUMMARY
echo '```' >> $GITHUB_STEP_SUMMARY
cat coverage_output.txt >> $GITHUB_STEP_SUMMARY
echo '```' >> $GITHUB_STEP_SUMMARY
# Add full detailed output
echo "" >> $GITHUB_STEP_SUMMARY
echo "### 📜 Detailed Output 📜" >> $GITHUB_STEP_SUMMARY
echo '```' >> $GITHUB_STEP_SUMMARY
cat pytest_output.txt >> $GITHUB_STEP_SUMMARY
echo '```' >> $GITHUB_STEP_SUMMARY