diff options
Diffstat (limited to 'libs/diagnose_basic/.github/workflows')
| -rw-r--r-- | libs/diagnose_basic/.github/workflows/build.yml | 20 | ||||
| -rw-r--r-- | libs/diagnose_basic/.github/workflows/linting.yml | 16 |
2 files changed, 36 insertions, 0 deletions
diff --git a/libs/diagnose_basic/.github/workflows/build.yml b/libs/diagnose_basic/.github/workflows/build.yml new file mode 100644 index 0000000..2fbd625 --- /dev/null +++ b/libs/diagnose_basic/.github/workflows/build.yml @@ -0,0 +1,20 @@ +name: Build Diagnose Basic + +on: + push: + branches: [master] + pull_request: + types: [opened, synchronize, reopened] + +env: + VCPKG_BINARY_SOURCES: clear;x-azblob,${{ vars.AZ_BLOB_VCPKG_URL }},${{ secrets.AZ_BLOB_SAS }},readwrite + +jobs: + build: + runs-on: windows-2022 + steps: + - name: Build Diagnose Basic + id: build-diagnose-basic + uses: ModOrganizer2/build-with-mob-action@master + with: + mo2-dependencies: uibase diff --git a/libs/diagnose_basic/.github/workflows/linting.yml b/libs/diagnose_basic/.github/workflows/linting.yml new file mode 100644 index 0000000..d91deb3 --- /dev/null +++ b/libs/diagnose_basic/.github/workflows/linting.yml @@ -0,0 +1,16 @@ +name: Lint Diagnose Basic + +on: + push: + pull_request: + types: [opened, synchronize, reopened] + +jobs: + lint: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Check format + uses: ModOrganizer2/check-formatting-action@master + with: + check-path: "." |
