mirror of
https://github.com/QualityInUse/lab-coverage-maksktl.git
synced 2026-08-05 12:25:29 +03:00
Initial commit
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
{
|
||||
"tests": [
|
||||
{
|
||||
"name": "Regression",
|
||||
"setup": "sudo -H pip3 install poetry ; poetry install",
|
||||
"run": "poetry run pytest .",
|
||||
"input": "",
|
||||
"output": "",
|
||||
"comparison": "included",
|
||||
"timeout": 5,
|
||||
"points": 1
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
name: GitHub Classroom Workflow
|
||||
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
permissions: write-all
|
||||
name: Autograding
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
python-version: [3.11.0]
|
||||
poetry-version: [1.7.0]
|
||||
os: [ubuntu-latest]
|
||||
runs-on: ${{ matrix.os }}
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/setup-python@v4
|
||||
with:
|
||||
python-version: ${{ matrix.python-version }}
|
||||
- uses: education/autograding@v1
|
||||
Reference in New Issue
Block a user