diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1586d031..2400c7a8 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -2,9 +2,6 @@ name: Build on: push: - branches: [ master ] - pull_request: - branches: [ master ] jobs: build: @@ -13,11 +10,12 @@ jobs: strategy: matrix: - os-type: [windows-latest, macos-latest, ubuntu-latest] - configuration: [Debug, Release, RelWithDebInfo] + os-type: [windows-2022, macos-13, ubuntu-20.04] + configuration: [Debug, Release, RelWithDebInfo] + fail-fast: false steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Configure run: cmake -B ${{github.workspace}}/Build -DCMAKE_BUILD_TYPE=${{matrix.configuration}} - name: Build diff --git a/README.md b/README.md index 8cfc295a..81796d59 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,6 @@ A visual scripting engine designed for embedding. The engine is written in modern C++ and compiles on several platforms with no external dependencies. Some platform dependent user interface utilities are also provided for Windows and MacOS platforms. -[![Build Status](https://ci.appveyor.com/api/projects/status/c0qxxixyhymfxfdf?svg=true)](https://ci.appveyor.com/project/kovacsv/visualscriptengine) [![Build Status](https://github.com/kovacsv/VisualScriptEngine/actions/workflows/build.yml/badge.svg)](https://github.com/kovacsv/VisualScriptEngine/actions/workflows/build.yml) ## Documentation