Skip to content

Commit

Permalink
test(ci): check semver (#2450)
Browse files Browse the repository at this point in the history
* test(ci): check semver

* chore: simulate change

* fix(ci): add checkout

* fix(ci): version typo

* chore: remove simulated change
  • Loading branch information
agilarity authored Mar 22, 2024
1 parent 0b70949 commit 572ae5b
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/ci-semver.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: CI semver

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
get-leptos-changed:
uses: ./.github/workflows/get-leptos-changed.yml

test:
needs: [get-leptos-changed]
if: needs.get-leptos-changed.outputs.leptos_changed == 'true'
name: Run semver check (nightly-2024-01-29)
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Sember Checks
uses: obi1kenobi/cargo-semver-checks-action@v2
with:
rust-toolchain: nightly-2024-01-29

0 comments on commit 572ae5b

Please sign in to comment.