File tree Expand file tree Collapse file tree 1 file changed +33
-0
lines changed
Expand file tree Collapse file tree 1 file changed +33
-0
lines changed Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments