Move the `test_boot` test from Travis over to the Github-Actions based CI. This is the last test on Travis, and the Travis CI can now be disabled, if we so wish. This test leaves a valid `travis.yml` file around, since Travis will still be enabled on the repository. We should first disable Travis and then drop this file, if we want to get rid of it.
10 lines
148 B
YAML
10 lines
148 B
YAML
dist: bionic
|
|
language: python
|
|
python:
|
|
- "3.7"
|
|
env:
|
|
- PYTHONUNBUFFERED=1
|
|
jobs:
|
|
include:
|
|
- name: f30-boot
|
|
script: echo Nothing to do.
|