Skip to content

What are the filesystems? #1245

What are the filesystems?

What are the filesystems? #1245

Workflow file for this run

name: Test
on:
- push
- pull_request
jobs:
test:
name: Test
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- windows-latest
- macos-latest
steps:
- uses: actions/checkout@v4
- run: df /
shell: bash
- run: df /tmp
shell: bash
- run: df ~
shell: bash
- run: df .
shell: bash