setup bats:GitHub设置BATS测试框架的操作 源码
设置BATS :bat: 一种 GitHub Action来设置。 用法 :rocket: 使用 ( .github/workflows/ci.yml )运行测试的示例工作.github/workflows/ci.yml : name : " CI " on : [push, pull_request] jobs : build : name : build runs-on : ubuntu-latest steps : - name : Setup BATS uses : mig4/setup-bats@v1 with : bats-version : 1.2.1 - name : Check out code uses : actions/checkout@v1 - n
用户评论