-
Notifications
You must be signed in to change notification settings - Fork 0
48 lines (44 loc) · 1.15 KB
/
ci_fixed.yaml
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
name: CI pinned server environment
on:
push:
branches:
- main
pull_request:
branches:
- main
schedule:
- cron: '0 0 * * MON'
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.11"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Grab requirements.txt
run: |
wget https://raw.githubusercontent.com/punch-mission/punch-mission/refs/heads/main/requirements.txt
- name: Install dependencies
run: |
eval `ssh-agent -s`
ssh-add - <<< '${{ secrets.PRIVATE_SSH_KEY }}'
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install ".[test]"
- name: Test with pytest
run: |
coverage run -m pytest
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
fail_ci_if_error: true
verbose: true