3
0
Fork 0
mirror of https://github.com/Swatinem/rust-cache synced 2026-02-07 11:32:15 +00:00

Fix EISDIR error due to globbed directories (#1)

This commit is contained in:
Felix Riegger 2023-04-27 19:30:44 +02:00 committed by GitHub
parent 6fd3edff69
commit 1cc4eb3f03
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 3360 additions and 3334 deletions

View file

@ -0,0 +1,23 @@
name: globbed-directories
on: [push, pull_request]
jobs:
simple:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
name: Test `cargo check/test` on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
env:
CARGO_TERM_COLOR: always
steps:
- uses: actions/checkout@v3
- name: Create folder that will be globbed
run: |
mkdir -p folder/rust-toolchain
- uses: ./