feat: add retry logic to connecto to mpv socket faster #49
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |