Skip to content

more questions

more questions #1246

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
- run: stat -f -c %T /
shell: bash
- run: stat -f -c %T /tmp
shell: bash
- run: stat -f -c %T ~
shell: bash
- run: stat -f -c %T .
shell: bash