test: integration test #157
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Gitea.client cicd workflow | |
on: | |
push: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build-test-deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: build and test | |
uses: ./.github/actions/build-and-test/ | |
- name: pack and push nuget | |
if: ${{ github.event_name == 'push' && github.ref_name == 'master' }} | |
uses: ./.github/actions/create-and-push-artifact/ | |
with: | |
nuget_api_key: ${{ secrets.NUGET_API_KEY }} |