mirror of
https://github.com/obi1kenobi/cargo-semver-checks-action.git
synced 2024-11-22 16:09:33 +01:00
30 lines
614 B
YAML
30 lines
614 B
YAML
name: CI
|
|
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
compare-dist:
|
|
name: Test build
|
|
uses: ./.github/workflows/test-build.yml
|
|
|
|
test-action:
|
|
name: Test the action on ubuntu-latest
|
|
uses: ./.github/workflows/test-action.yml
|
|
with:
|
|
runs-on: ubuntu-latest
|
|
|
|
test-action-windows-latest:
|
|
name: Test the action on windows-latest
|
|
uses: ./.github/workflows/test-action.yml
|
|
with:
|
|
runs-on: windows-latest
|
|
|
|
test-action-macos-latest:
|
|
name: Test the action on macos-latest
|
|
uses: ./.github/workflows/test-action.yml
|
|
with:
|
|
runs-on: macos-latest
|