mirror of
https://github.com/bertptrs/adventofcode.git
synced 2025-12-25 21:00:31 +01:00
25 lines
357 B
YAML
25 lines
357 B
YAML
dist: bionic
|
|
language: python
|
|
|
|
python:
|
|
- "3.9"
|
|
- "nightly"
|
|
|
|
jobs:
|
|
allow_failures:
|
|
- python: nightly
|
|
fast_finish: true
|
|
|
|
# Custom directory, for the correct year
|
|
before_install:
|
|
- cd 2019
|
|
- python -m pip install --upgrade pip
|
|
|
|
script: pytest
|
|
|
|
cache:
|
|
directories:
|
|
- $HOME/.cache/pip
|
|
before_cache:
|
|
- rm -f $HOME/.cache/pip/log/debug.log
|