mirror of
https://github.com/scopatz/nanorc
synced 2025-06-20 13:40:07 +02:00
29 lines
660 B
YAML
29 lines
660 B
YAML
# Tests
|
|
# Verify the install script
|
|
|
|
os: linux
|
|
dist: bionic
|
|
language: shell
|
|
|
|
git:
|
|
depth: 3
|
|
quiet: true
|
|
|
|
branches:
|
|
only:
|
|
# - master
|
|
- themify
|
|
|
|
before_install:
|
|
- sudo add-apt-repository -y "deb http://archive.ubuntu.com/ubuntu bionic-backports bullseye main restricted universe multiverse"
|
|
- sudo apt-get update -qq -y
|
|
- sudo apt-get install -y nano_4.5-1_amd64.deb
|
|
- nano --version
|
|
- shellcheck --version
|
|
|
|
# Add unstable repos for the last version of nano
|
|
# - sudo add-apt-repository "deb http://archive.ubuntu.com/ubuntu bionic-backports main restricted universe multiverse"
|
|
# - sudo apt-get install -qq -y shellcheck
|
|
|
|
# script: ./tests.sh
|