Skip to content

Moving to GPT-4

Moving to GPT-4 #77

name: Run tests
on:
push:
branches:
- main
workflow_dispatch:
jobs:
run_arxiv_sanity_bot:
runs-on: ubuntu-latest
environment: dev
steps:
- name: Check out repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.11
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .[test]
- name: Run tests
run: |
ci/run_tests.sh
- name: Submit coverage
if: ${{ github.event_name == 'push' }}
uses: paambaati/[email protected]
env:
CC_TEST_REPORTER_ID: ${{ secrets.CodeClimate }}
with:
coverageCommand: coverage xml
debug: true