Skip to content

ydresponse: switch to new api (this api no need appkey) #33

ydresponse: switch to new api (this api no need appkey)

ydresponse: switch to new api (this api no need appkey) #33

Workflow file for this run

name: Rust
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- uses: hecrj/setup-rust-action@master
with:
rust-version: stable
- uses: actions/checkout@v2
- uses: actions/cache@v2
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Install dependencies
run: sudo apt-get install -y libx11-xcb-dev libdbus-1-dev libxcb-shape0-dev libxcb-xfixes0-dev
if: runner.os == 'Linux'
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose