1
0
Fork 0
mirror of https://github.com/Findus23/AdventOfCode2019.git synced 2024-08-27 19:52:12 +02:00
AdventOfCode2019/.travis.yml

29 lines
524 B
YAML
Raw Permalink Normal View History

2019-12-05 11:35:38 +01:00
jobs:
allow_failures:
- rust: nightly
include:
- language: python
python: 3.8
2019-12-05 15:12:44 +01:00
install: pip install -U mypy
2019-12-05 11:35:38 +01:00
before_script:
- cd python
script:
- pytest
2019-12-07 22:24:20 +01:00
- mypy 1 2 3 4 5 6
2019-12-05 11:35:38 +01:00
- language: rust
rust: stable
cache: cargo
before_script:
- cd rust
- language: rust
rust: beta
cache: cargo
before_script:
- cd rust
- language: rust
rust: nightly
cache: cargo
before_script:
- cd rust