Skip to content

Commit

Permalink
Corrected workflow folder name
Browse files Browse the repository at this point in the history
  • Loading branch information
franhoey committed Jan 5, 2024
1 parent 95dad6d commit 963f21a
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 49 deletions.
40 changes: 0 additions & 40 deletions .github/workflow/build.yml

This file was deleted.

45 changes: 36 additions & 9 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,40 @@
name: build
name: Build

on:
push:
branches:
- main
- develop
- "feature/**"
- "release/**"
- "hotfix/**"
tags:
- "*"
paths-ignore:
- "README.md"
pull_request:

on: [push]
jobs:
check-bats-version:
runs-on: ubuntu-latest
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ windows-2022, ubuntu-22.04, macos-12 ]

steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
- name: Checkout the repository
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Fetch all tags and branches
run: git fetch --prune --unshallow
- uses: actions/[email protected]
with:
dotnet-version: |
6.0
7.0
8.0
- name: Build project
uses: cake-build/[email protected]
with:
node-version: '14'
- run: npm install -g bats
- run: bats -v
script-path: recipe.cake
target: Build-And-Test
verbosity: Diagnostic

0 comments on commit 963f21a

Please sign in to comment.