-
Notifications
You must be signed in to change notification settings - Fork 367
/
.travis.yml
49 lines (45 loc) · 923 Bytes
/
.travis.yml
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
dist: focal
language: ruby
rvm:
- 3.1
- 3.2
- 3.3
cache:
- bundler
script:
- bundle exec rspec
jobs:
include:
- &job
stage: test runtime dependency installation
if: commit_message !~ /skip:test_dependencies/ AND env(SKIP_TEST_DEPENDENCIES) IS blank
cache: false
install:
- rvm use 3.3 --install --binary --fuzzy
- gem build dpl.gemspec
- gem install dpl-*.gem
# - gem update --system
- nvm install 18.20.2
- nvm use 18.20.2
- node --version
script:
- .travis/test_install
rvm: 3.3
- <<: *job
language: python
python: 2.7
- <<: *job
language: python
python: 3.7
- <<: *job
language: python
python: 3.8
- <<: *job
language: python
python: 3.9
- <<: *job
language: python
python: 3.10
- <<: *job
language: python
python: 3.11