Skip to content

Commit a4f16c9

Browse files
committed
add test suite workflow
1 parent 2ac89a5 commit a4f16c9

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

.github/workflows/test-suite.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# Tests a broad set of Quarto functionality that users are likely to encounter.
2+
# A failure indicates some signficant portion of functionality is likely to be broken.
3+
name: Test Suite
4+
on:
5+
push:
6+
# only trigger on branches, not on tags
7+
branches:
8+
- main
9+
10+
jobs:
11+
test-suite:
12+
name: Run test suite
13+
if: github.repository == 'quarto-dev/quarto-markdown'
14+
runs-on: ubuntu-latest
15+
steps:
16+
- name: Temporarily modify the rust toolchain version
17+
run: rustup override set nightly
18+
shell: bash
19+
20+
- name: Output rust version for educational purposes
21+
run: rustup --version
22+
shell: bash
23+
24+
- name: Checkout Repo
25+
uses: actions/checkout@v4
26+
27+
- name: Build
28+
run: cargo build
29+
shell: bash
30+
31+
- name: Test
32+
run: cargo test
33+
shell: bash

0 commit comments

Comments
 (0)