From 1f0cce123913f2e2ef55490dace0567eb34ee18e Mon Sep 17 00:00:00 2001 From: Egorov Nikita Andreevich Date: Thu, 27 Nov 2025 11:08:55 +0700 Subject: [PATCH] Create build.yml --- .github/workflows/build.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..01e13d7 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,16 @@ +name: Development build + +on: + push: + branches: + - master + +permissions: + contents: write + +jobs: + linux-build: + runs-on: ubuntu-latest + steps: + - name: Checkout sources + uses: actions/checkout@v6