From 2bfa51edf8b38944c5c79d6cdbfa7822d6dc366d Mon Sep 17 00:00:00 2001 From: Stanislav Dzisiak Date: Wed, 4 Sep 2024 17:25:58 +0300 Subject: [PATCH] create build workflow --- .github/workflows/build.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 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..72fb8c1 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,25 @@ +name: build + +on: + push: + branches: + # - main + - create-workflow + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + + - name: Set linter directories + run: echo "LINTER_DIRS=$(find . -maxdepth 1 -type d -not -name '.*' -exec basename {} \;)" >> $GITHUB_ENV + + - run: echo $LINTER_DIRS + # - uses: dorny/paths-filter@v3 + # id: changes + # with: + # filters: | + # src: + # - './**'