Bump requests from 2.31.0 to 2.32.0 #38
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI Pipeline | |
on: | |
pull_request: | |
branches: | |
- main | |
push: | |
branches: | |
- main | |
jobs: | |
# Checks for changes in version.txt (used for release job) | |
changes: | |
runs-on: ubuntu-latest | |
outputs: | |
version_changed: ${{ steps.filter.outputs.version_changed }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dorny/paths-filter@v2 | |
id: filter | |
with: | |
filters: | | |
version_changed: | |
- 'cover_agent/version.txt' | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 # Ensures we fetch all history for all branches | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.x' | |
- name: Install Poetry | |
run: pip install poetry | |
- name: Install dependencies using Poetry | |
run: poetry install | |
- name: Run tests and generate reports | |
env: | |
OPENAI_API_KEY: "This_is_a_fake_API_key" | |
run: | | |
poetry run pytest --junitxml=testLog.xml --cov=templated_tests --cov=cover_agent --cov-report=xml:cobertura.xml --cov-report=term --cov-fail-under=70 --log-cli-level=INFO | |
- name: Upload test report | |
uses: actions/upload-artifact@v2 | |
if: always() | |
with: | |
name: test-reports | |
path: testLog.xml | |
- name: Upload coverage report | |
uses: actions/upload-artifact@v2 | |
if: always() | |
with: | |
name: coverage-reports | |
path: cobertura.xml | |
env: | |
pythonLocation: /opt/hostedtoolcache/Python/3.12.2/x64 | |
LD_LIBRARY_PATH: /opt/hostedtoolcache/Python/3.12.2/x64/lib | |
build: | |
needs: test | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.x' | |
- name: Install Dependencies | |
run: | | |
pip install poetry | |
poetry install | |
- name: Build Executable | |
run: | | |
poetry run pyinstaller --add-data "cover_agent/prompt_template.md:." --add-data "cover_agent/version.txt:." --hidden-import=tiktoken_ext.openai_public --hidden-import=tiktoken_ext --onefile --name cover-agent-${{ matrix.os }} cover_agent/main.py | |
- name: Upload Executable | |
uses: actions/upload-artifact@v2 | |
with: | |
name: cover-agent-${{ matrix.os }} | |
path: dist/cover-agent-${{ matrix.os }}* | |
release: | |
needs: [build, changes] | |
if: github.event_name == 'push' && github.ref == 'refs/heads/main' && needs.changes.outputs.version_changed == 'true' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Download executables | |
uses: actions/download-artifact@v2 | |
with: | |
path: dist | |
- name: Extract version | |
run: | | |
echo "VERSION=$(cat cover_agent/version.txt)" >> $GITHUB_ENV | |
- name: Create Release | |
id: create_release | |
uses: actions/create-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag_name: ${{ env.VERSION }} | |
release_name: Release ${{ env.VERSION }} | |
draft: false | |
prerelease: false | |
- name: Upload Release Asset (Ubuntu) | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} | |
asset_path: ./dist/cover-agent-ubuntu-latest/cover-agent-ubuntu-latest | |
asset_name: cover-agent-ubuntu | |
asset_content_type: application/octet-stream | |
- name: Upload Release Asset (Windows) | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} | |
asset_path: ./dist/cover-agent-windows-latest/cover-agent-windows-latest.exe | |
asset_name: cover-agent-windows.exe | |
asset_content_type: application/octet-stream | |
- name: Upload Release Asset (macOS) | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} | |
asset_path: ./dist/cover-agent-macos-latest/cover-agent-macos-latest | |
asset_name: cover-agent-macos | |
asset_content_type: application/octet-stream |