Skip to content

create build workflow #1

create build workflow

create build workflow #1

Workflow file for this run

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:
# - './**'