2022-12-31 12:05:36 +01:00
|
|
|
name: CI
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
|
2023-02-27 21:47:09 +01:00
|
|
|
env:
|
|
|
|
RUST_BACKTRACE: 1
|
|
|
|
CARGO_TERM_COLOR: always
|
|
|
|
|
2022-12-31 12:05:36 +01:00
|
|
|
jobs:
|
2023-02-23 18:34:06 +01:00
|
|
|
test-build:
|
2023-02-22 11:42:39 +01:00
|
|
|
name: Test build
|
|
|
|
uses: ./.github/workflows/test-build.yml
|
2023-02-21 12:18:52 +01:00
|
|
|
|
2022-12-31 13:03:06 +01:00
|
|
|
test-action:
|
2023-02-25 14:16:59 +01:00
|
|
|
name: Smoke test the action
|
2023-01-09 00:46:08 +01:00
|
|
|
uses: ./.github/workflows/test-action.yml
|
2023-02-23 18:34:06 +01:00
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
os: [ubuntu-latest, windows-latest, macos-latest]
|
2023-01-09 00:46:08 +01:00
|
|
|
with:
|
2023-02-23 18:34:06 +01:00
|
|
|
runs-on: ${{ matrix.os }}
|
2023-02-25 14:16:59 +01:00
|
|
|
|
|
|
|
test-inputs:
|
|
|
|
name: Test action inputs
|
|
|
|
uses: ./.github/workflows/test-inputs.yml
|