mirror of
https://github.com/open-telemetry/opentelemetry-go.git
synced 2025-01-10 00:29:12 +02:00
15 lines
242 B
YAML
15 lines
242 B
YAML
|
name: codespell
|
||
|
on:
|
||
|
push:
|
||
|
branches:
|
||
|
- main
|
||
|
pull_request:
|
||
|
jobs:
|
||
|
codespell:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Checkout Repo
|
||
|
uses: actions/checkout@v3
|
||
|
- name: Codespell
|
||
|
run: make codespell
|