From caba9fa3404827aac5a032af64a445adf8318066 Mon Sep 17 00:00:00 2001 From: Denis Buzdalov Date: Mon, 7 Oct 2024 10:21:15 +0300 Subject: [PATCH] [ compat ] Be more friendly to non-friendly OSes --- .github/workflows/ci-non-primary-os.yml | 30 +++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .github/workflows/ci-non-primary-os.yml diff --git a/.github/workflows/ci-non-primary-os.yml b/.github/workflows/ci-non-primary-os.yml new file mode 100644 index 000000000..fe27b4c19 --- /dev/null +++ b/.github/workflows/ci-non-primary-os.yml @@ -0,0 +1,30 @@ +--- +name: Non-primary OS + +on: + push: + branches: + - main + - master + tags: + - '*' + pull_request: + branches: + - main + - master + +permissions: + statuses: write + +concurrency: + group: ${{ github.workflow }}@${{ github.ref }} + cancel-in-progress: true + +jobs: + build: + name: Clones on Windows + runs-on: windows-latest + steps: + + - name: Checkout + uses: actions/checkout@v4