Skip to content

Update blank.yml

Update blank.yml #1029

Workflow file for this run

name: CI
on:
# schedule:
# - cron: "*/60 * * * *"
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
macos:
name: "Run"
strategy:
fail-fast: false
matrix:
runner: ["ghcr.io/cirruslabs/ubuntu-runner-amd64:22.04-md"]
runs-on: ${{ matrix.runner }}
timeout-minutes: 2
steps:
- uses: actions/checkout@v4
- name: Disk Before
run: df -h
- name: ulimit
run: ulimit -n $( ulimit -H -n )
- name: Create file
run: dd if=/dev/urandom of=8GB.bin bs=128M count=64 iflag=fullblock
- name: Disk After
run: df -h