Skip to content

Commit

Permalink
Exclude markdown from actions (#2000)
Browse files Browse the repository at this point in the history
  • Loading branch information
AustinJ235 authored Sep 24, 2022
1 parent d4ba481 commit 6b0aa26
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,12 @@ name: Rust
on:
push:
branches: [ master ]
paths-ignore:
- '**.md'
pull_request:
branches: [ master ]
paths-ignore:
- '**.md'

env:
CARGO_TERM_COLOR: always
Expand All @@ -14,30 +18,30 @@ jobs:
runs-on: windows-latest
steps:
- name: Ninja Install
uses: crazy-max/ghaction-chocolatey@v1.3.1
uses: crazy-max/ghaction-chocolatey@v2
with:
args: install ninja
- name: Python3 Install
uses: crazy-max/ghaction-chocolatey@v1.3.1
uses: crazy-max/ghaction-chocolatey@v2
with:
args: install python3 --params "/InstallAllUsers"
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
linux_stable:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
macos_stable:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
- name: Run tests
Expand Down

0 comments on commit 6b0aa26

Please # to comment.