diff --git a/.github/workflows/action.yml b/.github/workflows/action.yml index b717133..c801e32 100644 --- a/.github/workflows/action.yml +++ b/.github/workflows/action.yml @@ -66,3 +66,26 @@ jobs: # echo Add other actions to build, # echo test, and deploy your project. + mtest: + # The type of runner that the job will run on + runs-on: macos-latest + + env: + EASYRSA_REMOTE_CI: 1 + #EASYRSA_WIN: 1 + TERM: xterm-256color + + # Steps represent a sequence of tasks that will be executed as part of the job + steps: + # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it + - uses: actions/checkout@v2 + + # Runs a single command using the runners shell + - name: Run a one-line script + run: sh op-test.sh -v + + # Runs a set of commands using the runners shell + # - name: Run a multi-line script + # run: | + # echo Add other actions to build, + # echo test, and deploy your project.