๐Ÿ“ฆ SeleniumHQ / selbot2

๐Ÿ“„ .travis.yml ยท 26 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26language: ruby
rvm:
  - 2.6.5
env:
    global:
        - DATABASE_URL="postgres://postgres@localhost:5432/travis_ci_test"
notifications:
  recipients:
    - jari.bakken@gmail.com
  irc:
    channels:
      - "irc.freenode.net#selenium"
    on_success: change
    on_failure: change
    template:
      - "%{author} | %{commit} | %{message} | %{build_url}"
services:
  - postgresql
before_install:
  - sudo apt-get update -qq
  - sudo apt-get install -qq postgresql-server-dev-9.1
  - sudo apt-get install -qq libpq-dev
before_script:
  - psql -c 'create database travis_ci_test;' -U postgres
  - for file in **/*.rb; do ruby -c $file || return 1; done