diff options
Diffstat (limited to 'libs/installer_fomod/.github/workflows')
| -rw-r--r-- | libs/installer_fomod/.github/workflows/build.yml | 20 | ||||
| -rw-r--r-- | libs/installer_fomod/.github/workflows/linting.yml | 16 |
2 files changed, 36 insertions, 0 deletions
diff --git a/libs/installer_fomod/.github/workflows/build.yml b/libs/installer_fomod/.github/workflows/build.yml new file mode 100644 index 0000000..e3565de --- /dev/null +++ b/libs/installer_fomod/.github/workflows/build.yml @@ -0,0 +1,20 @@ +name: Build Installer FOMOD + +on: + push: + branches: [master] + pull_request: + types: [opened, synchronize, reopened] + +env: + VCPKG_BINARY_SOURCES: ${{ vars.AZ_BLOB_VCPKG_URL != '' && format('clear;x-azblob,{0},{1},readwrite', vars.AZ_BLOB_VCPKG_URL, secrets.AZ_BLOB_SAS) || '' }} + +jobs: + build: + runs-on: windows-2022 + steps: + - name: Build Installer FOMOD + id: build-installer-fomod + uses: ModOrganizer2/build-with-mob-action@master + with: + mo2-dependencies: uibase diff --git a/libs/installer_fomod/.github/workflows/linting.yml b/libs/installer_fomod/.github/workflows/linting.yml new file mode 100644 index 0000000..c199ade --- /dev/null +++ b/libs/installer_fomod/.github/workflows/linting.yml @@ -0,0 +1,16 @@ +name: Lint Installer FOMOD Plugin + +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: "." |
