Skip to content

Commit

Permalink
Strings
Browse files Browse the repository at this point in the history
  • Loading branch information
Indy2222 committed Aug 8, 2023
1 parent 4043af9 commit bd2ec41
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/actions/rust/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,39 +9,39 @@ inputs:
type: string

runs:
using: "composite"
using: 'composite'
steps:
- name: "Linux: Dependencies"
- name: 'Linux: Dependencies'
shell: bash
run: |
sudo apt-get update
sudo apt-get install --no-install-recommends -y libasound2-dev libudev-dev
- name: "LFS: File List"
- name: 'LFS: File List'
shell: bash
run: "git lfs ls-files -l | cut -d' ' -f1 | sort > .lfs-assets-id"
run: 'git lfs ls-files -l | cut -d' ' -f1 | sort > .lfs-assets-id'

- name: "LFS: Cache"
- name: 'LFS: Cache'
uses: actions/cache@v3
with:
path: .git/lfs
key: rust-lfs-${{ inputs.name }}-${{ hashFiles('.lfs-assets-id') }}-v1

- name: "LFS: Pull"
- name: 'LFS: Pull'
shell: bash
run: git lfs pull

- name: "Rust: Toolchain"
- name: 'Rust: Toolchain'
uses: dtolnay/rust-toolchain@stable
id: rust-toolchain
with:
components: ${{ inputs.components }}

- name: "Rust: Versions"
- name: 'Rust: Versions'
shell: bash
run: rustc --version && cargo --version

- name: "Rust: Cache"
- name: 'Rust: Cache'
uses: actions/cache@v3
id: rust-cache
with:
Expand Down

0 comments on commit bd2ec41

Please sign in to comment.