2020-07-24 13:06:33 -05:00
|
|
|
name: metrics
|
2020-07-24 09:28:07 -05:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
|
|
|
|
env:
|
|
|
|
CARGO_INCREMENTAL: 0
|
|
|
|
CARGO_NET_RETRY: 10
|
2020-11-02 09:31:38 -06:00
|
|
|
RUSTFLAGS: "-D warnings -W unreachable-pub"
|
2020-07-24 09:28:07 -05:00
|
|
|
RUSTUP_MAX_RETRIES: 10
|
|
|
|
|
|
|
|
jobs:
|
2020-07-24 13:24:14 -05:00
|
|
|
metrics:
|
2022-04-13 17:42:51 -05:00
|
|
|
if: github.repository == 'rust-lang/rust-analyzer'
|
2020-07-24 09:28:07 -05:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
2022-04-30 15:56:03 -05:00
|
|
|
uses: actions/checkout@v3
|
2020-07-24 09:28:07 -05:00
|
|
|
|
|
|
|
- name: Install Rust toolchain
|
2022-07-14 14:24:38 -05:00
|
|
|
run: |
|
2022-07-16 05:42:28 -05:00
|
|
|
rustup update --no-self-update stable
|
2022-07-14 14:24:38 -05:00
|
|
|
rustup component add rustfmt rust-src
|
2020-07-24 09:28:07 -05:00
|
|
|
|
|
|
|
- name: Collect metrics
|
|
|
|
run: cargo xtask metrics
|
|
|
|
env:
|
2020-07-24 13:53:08 -05:00
|
|
|
METRICS_TOKEN: ${{ secrets.METRICS_TOKEN }}
|