Skip to content

chore: Create GH action to auto bump rustc (#108) #98

chore: Create GH action to auto bump rustc (#108)

chore: Create GH action to auto bump rustc (#108) #98

Workflow file for this run

name: Run CI
on:
push:
branches: [main]
paths-ignore:
- "**.md" # Do not need to run CI for markdown changes.
pull_request:
branches: [main]
paths-ignore:
- "**.md"
jobs:
ci-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # If you only need the current version keep this.
- name: Get Rust version
id: rust-version
run: cat ./.github/variables/rust-versions.env >> $GITHUB_OUTPUT
- name: Setup rust tooling
run: |
rustup override set ${{ steps.rust-version.outputs.target }}
rustup component add rustfmt clippy
- uses: ./.github/actions/ci
- uses: ./.github/actions/build-docs