Skip to content

Commit

Permalink
Merge pull request #167 from punch-mission/create-pinned-ci
Browse files Browse the repository at this point in the history
Create CI_fixed.yaml
  • Loading branch information
jmbhughes authored Oct 22, 2024
2 parents b7472a0 + 21a998b commit 2213eef
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions .github/workflows/CI_fixed.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
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: |
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

0 comments on commit 2213eef

Please sign in to comment.