mirror of
https://github.com/GuillemCastro/spotify-dl.git
synced 2024-11-10 05:20:25 +01:00
28 lines
402 B
YAML
28 lines
402 B
YAML
|
name: Build latest - Linux
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches:
|
||
|
- '*'
|
||
|
|
||
|
env:
|
||
|
CARGO_TERM_COLOR: always
|
||
|
|
||
|
permissions:
|
||
|
contents: write
|
||
|
|
||
|
jobs:
|
||
|
|
||
|
build:
|
||
|
runs-on: ubuntu-latest
|
||
|
strategy:
|
||
|
fail-fast: false
|
||
|
steps:
|
||
|
- uses: actions/checkout@v3
|
||
|
- name: install Rust stable
|
||
|
uses: dtolnay/rust-toolchain@stable
|
||
|
- name: Build
|
||
|
run: |
|
||
|
cargo build --verbose --release
|
||
|
|