mirror of
https://github.com/actix/actix-website
synced 2024-11-24 00:41:07 +01:00
23 lines
459 B
YAML
23 lines
459 B
YAML
sudo: false
|
|
|
|
install:
|
|
- curl -L https://github.com/gohugoio/hugo/releases/download/v0.40.3/hugo_0.40.3_Linux-64bit.tar.gz | tar xzvf -
|
|
|
|
matrix:
|
|
include:
|
|
- env:
|
|
- TASK=build
|
|
script: ./hugo
|
|
- env:
|
|
- TASK=check
|
|
lang: rust
|
|
script: cd examples; cargo check
|
|
|
|
deploy:
|
|
provider: script
|
|
script: bash .deploy.sh
|
|
skip_cleanup: true
|
|
on:
|
|
branch: master
|
|
condition: $TRAVIS_PULL_REQUEST = "false" && $TASK = "build"
|