Skip to content

Commit

Permalink
feat: add Fs integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
lichuang committed Oct 8, 2024
1 parent 9e0e1b8 commit d53efa0
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/fs_integration_test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Fs integration test

on:
schedule: # execute every 24 hours
- cron: "* */24 * * *"
workflow_dispatch:

jobs:
plan:
runs-on: ubuntu-latest
steps:
- name: 'Checkout codes'
uses: actions/checkout@v4
with:
# fetch depth set to 0 to make sure we have correct diff result.
fetch-depth: 0

- name: Setup Rust toolchain
uses: ./.github/actions/setup

- name: 'Run integration test for fs'
shell: bash
run: |
cargo build --release
ls
pwd

0 comments on commit d53efa0

Please sign in to comment.