teloxide/.github/workflows/ci.yml

69 lines
1.7 KiB
YAML
Raw Normal View History

2020-07-04 16:34:07 +02:00
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
2019-11-27 15:30:33 +01:00
name: Continuous integration
jobs:
2020-07-02 14:48:37 +02:00
code-checks:
2019-11-27 15:30:33 +01:00
runs-on: ubuntu-latest
steps:
2020-07-03 14:52:16 +02:00
- uses: actions/checkout@v2
2019-11-27 15:30:33 +01:00
- uses: actions-rs/toolchain@v1
with:
profile: minimal
2020-07-02 14:57:06 +02:00
toolchain: nightly
2019-11-27 15:30:33 +01:00
override: true
2020-07-02 14:57:06 +02:00
components: rustfmt, clippy
2020-07-02 14:48:37 +02:00
- name: Cargo fmt
2020-07-02 14:54:24 +02:00
run: cargo +nightly fmt --all -- --check
2020-07-03 14:50:28 +02:00
- uses: actions-rs/toolchain@v1
2019-11-27 15:30:33 +01:00
with:
2020-07-03 14:50:28 +02:00
profile: minimal
toolchain: stable
override: true
2020-07-02 14:48:37 +02:00
- name: Cargo clippy
run: cargo clippy --all-targets --all-features -- -D warnings
stable-test:
runs-on: ubuntu-latest
2020-07-02 14:52:42 +02:00
steps:
2020-07-03 14:52:16 +02:00
- uses: actions/checkout@v2
2020-07-03 14:50:28 +02:00
- uses: actions-rs/toolchain@v1
2019-11-27 15:30:33 +01:00
with:
2020-07-03 14:50:28 +02:00
profile: minimal
toolchain: stable
override: true
2020-07-04 16:34:07 +02:00
- name: Setup redis
2020-07-04 17:07:50 +02:00
run: |
2020-07-04 17:13:09 +02:00
sudo apt install redis-server
redis-server --port 7777 > /dev/null &
redis-server --port 7778 > /dev/null &
redis-server --port 7779 > /dev/null &
2020-07-02 14:52:42 +02:00
- name: Cargo test
run: cargo test --all-features
build-example:
2020-07-02 14:48:37 +02:00
runs-on: ubuntu-latest
2020-07-03 18:09:53 +02:00
strategy:
matrix:
example: [
admin_bot,
dialogue_bot,
heroku_ping_pong_bot,
ngrok_ping_pong_bot,
ping_pong_bot,
shared_state_bot,
simple_commands_bot,
]
2020-07-02 14:52:42 +02:00
steps:
2020-07-03 14:52:16 +02:00
- uses: actions/checkout@v2
2020-07-03 14:50:28 +02:00
- uses: actions-rs/toolchain@v1
2020-03-27 13:54:06 +01:00
with:
2020-07-03 14:50:28 +02:00
profile: minimal
toolchain: stable
override: true
- name: Test the example
run: cd examples && cd ${{ matrix.example }} && cargo check