mirror of
https://github.com/Hopiu/lychee.git
synced 2026-05-26 22:23:58 +00:00
linting
This commit is contained in:
parent
495f856c61
commit
5a2e10799f
2 changed files with 4 additions and 4 deletions
6
.github/workflows/release.yml
vendored
6
.github/workflows/release.yml
vendored
|
|
@ -43,17 +43,17 @@ jobs:
|
|||
fail-fast: false
|
||||
steps:
|
||||
- name: Install musl tools
|
||||
if: contains(matrix.target, 'musl')
|
||||
if: ${{ contains(matrix.target, 'musl') }}
|
||||
run: sudo apt-get install -y musl-tools
|
||||
|
||||
- name: Install arm tools
|
||||
if: contains(matrix.target, 'arm')
|
||||
if: ${{ contains(matrix.target, 'arm') }}
|
||||
run: |
|
||||
echo "GNU_PREFIX=arm-linux-gnueabihf-" >> $GITHUB_ENV
|
||||
sudo apt-get install -y binutils-arm-linux-gnueabihf
|
||||
|
||||
- name: Install aarch64 tools
|
||||
if: contains(matrix.target, 'aarch64')
|
||||
if: ${{ contains(matrix.target, 'aarch64') }}
|
||||
run: |
|
||||
echo "GNU_PREFIX=aarch64-linux-gnu-" >> $GITHUB_ENV
|
||||
sudo apt-get install -y binutils-aarch64-linux-gnu
|
||||
|
|
|
|||
2
.github/workflows/rust.yml
vendored
2
.github/workflows/rust.yml
vendored
|
|
@ -56,7 +56,7 @@ jobs:
|
|||
- run: cargo-publish-all --dry-run
|
||||
|
||||
publish:
|
||||
if: startsWith(github.ref, 'refs/tags/')
|
||||
if: ${{ startsWith(github.ref, 'refs/tags/') }}
|
||||
needs:
|
||||
- test
|
||||
- lint
|
||||
|
|
|
|||
Loading…
Reference in a new issue