Skip to content

Commit

Permalink
yml
Browse files Browse the repository at this point in the history
  • Loading branch information
riverar committed Feb 6, 2024
1 parent ada585c commit 04ecfb0
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/features.yml
@@ -0,0 +1,31 @@
name: features

on:
pull_request:
push:
paths-ignore:
- '.github/ISSUE_TEMPLATE/**'
branches:
- master
- features

env:
RUSTFLAGS: -Dwarnings

jobs:
index:
name: tool_features
runs-on: windows-2019
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Update toolchain
run: rustup update --no-self-update stable && rustup default stable
- name: Run
run: cargo run -p tool_features
- name: Upload features index artifact
uses: actions/upload-artifact@v4
with:
name: features-index
path: index.json
compression-level: 9

0 comments on commit 04ecfb0

Please sign in to comment.