Skip to content

feat: add retry logic to connecto to mpv socket faster #49

feat: add retry logic to connecto to mpv socket faster

feat: add retry logic to connecto to mpv socket faster #49

Workflow file for this run

name: Test/lint
on:
- push
- pull_request
env:
CARGO_TERM_COLOR: always
CARGO_INCREMENTAL: "0"
jobs:
test-lint:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- build: linux
os: ubuntu-latest
- build: windows-gnu
os: windows-latest
steps:
- name: Clone repository
uses: actions/checkout@v4
- name: cargo check
run: cargo check
- name: cargo test
run: cargo test
- name: cargo clippy
run: cargo clippy
- name: cargo fmt
run: cargo fmt --check