Skip to content

Commit

Permalink
create build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
corsicanec82 committed Sep 4, 2024
1 parent 0d30a31 commit 2bfa51e
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -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:
# - './**'

0 comments on commit 2bfa51e

Please sign in to comment.