You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
495 B
21 lines
495 B
name: GitHub Classroom Workflow |
|
|
|
on: [push] |
|
|
|
jobs: |
|
build: |
|
permissions: write-all |
|
name: Autograding |
|
strategy: |
|
fail-fast: false |
|
matrix: |
|
python-version: [3.12.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
|
|
|