Skip to content

Commit

Permalink
Merge branch 'LMU-Seminar-LLMs:master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
Noza23 authored Sep 24, 2023
2 parents a59355d + 8449809 commit 7269d42
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# This workflow will install Python dependencies, run tests and record coverage with a single version of Python.

name: Python application
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

permissions:
contents: read

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Set up Python 3.9
uses: actions/setup-python@v3
with:
python-version: "3.9"

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install git+https://github.com/LMU-Seminar-LLMs/AutoTestGen.git
- name: Test with coverage
run: |
coverage run -m unittest
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
# AutoTestGen

[![build status](https://github.com/LMU-Seminar-LLMs/AutoTestGen/actions/workflows/main.yml/badge.svg)](https://github.com/LMU-Seminar-LLMs/AutoTestGen/actions/workflows/main.yml)
[![LMU: Munich](https://img.shields.io/badge/LMU-Munich-009440.svg)](https://www.en.statistik.uni-muenchen.de/index.html)
[![License](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)
[![codecov](https://codecov.io/gh/Noza23/AutoTestGen/graph/badge.svg?token=Dv77ecKOmO)](https://codecov.io/gh/Noza23/AutoTestGen)

## Description

Expand Down

0 comments on commit 7269d42

Please sign in to comment.