-
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