All checks were successful
Deploy Website / deploy (push) Has been skipped
29 lines
473 B
YAML
29 lines
473 B
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
tags: ['v*']
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
linux:
|
|
uses: ./.github/workflows/build-linux.yml
|
|
with:
|
|
run-tests: true
|
|
run-clippy: true
|
|
|
|
macos:
|
|
uses: ./.github/workflows/build-macos.yml
|
|
with:
|
|
run-tests: true
|
|
run-clippy: true
|
|
|
|
windows:
|
|
uses: ./.github/workflows/build-windows.yml
|
|
with:
|
|
run-tests: true
|
|
run-clippy: true
|