Fix unable upgrading weak ref core_song model with direct playing audio #85
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: Clippy check | |
on: push | |
jobs: | |
clippy_check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: | | |
cat > entrypoint.sh <<EOF | |
#!/bin/bash | |
set -e | |
export PATH=/root/.cargo/bin:\$PATH | |
RUSTFLAGS="-D warnings" cargo clippy --all-targets | |
EOF | |
- name: Run Clippy | |
run: | | |
docker run --rm -v ${{ github.workspace }}:/app -v ./entrypoint.sh:/entrypoint.sh ghcr.io/kosette/ubuntu-rust-gtk4:latest |