登录 注册
当前位置:主页 > 资源下载 > 9 > GitHub上操作设置BATS测试框架的流程

GitHub上操作设置BATS测试框架的流程

  • 更新:2024-11-30 09:11:50
  • 大小:204KB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:其它 - 开发技术
  • 格式:ZIP

资源介绍

设置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