Skip to content

Commit 3474ca3

Browse files
authored
Merge pull request #606 from libtom/docs-in-ci
Docs in ci
2 parents e8e678e + 06f22b6 commit 3474ca3

File tree

2 files changed

+16
-2
lines changed

2 files changed

+16
-2
lines changed

.github/workflows/main.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,20 @@ on:
1313
- /^release\/.*$/
1414

1515
jobs:
16+
Docs:
17+
runs-on: ubuntu-20.04
18+
container: texlive/texlive:latest-medium
19+
steps:
20+
- uses: actions/checkout@v2
21+
- name: generate PDF
22+
run: |
23+
make docs
24+
cp doc/crypt.pdf crypt-${{ github.run_id }}.pdf
25+
- name: upload PDF
26+
uses: actions/upload-artifact@v3
27+
with:
28+
name: crypt-${{ github.run_id }}.pdf
29+
path: crypt-${{ github.run_id }}.pdf
1630
Build:
1731
runs-on: ${{ matrix.os }}
1832
strategy:

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ or from the page https://github.com/libtom/libtomcrypt/releases .
88

99
### Travis CI
1010

11-
master: [![Build Status](https://api.travis-ci.org/libtom/libtomcrypt.png?branch=master)](https://travis-ci.org/libtom/libtomcrypt) [![Coverage Status](https://coveralls.io/repos/libtom/libtomcrypt/badge.png?branch=master)](https://coveralls.io/r/libtom/libtomcrypt)
11+
master: [![Build Status](https://github.com/libtom/libtomcrypt/actions/workflows/main.yml/badge.svg?branch=master)](https://github.com/libtom/libtomcrypt/actions/workflows/main.yml?query=branch%3Amaster+++) [![Coverage Status](https://coveralls.io/repos/libtom/libtomcrypt/badge.png?branch=master)](https://coveralls.io/r/libtom/libtomcrypt)
1212

13-
develop: [![Build Status](https://api.travis-ci.org/libtom/libtomcrypt.png?branch=develop)](https://travis-ci.org/libtom/libtomcrypt) [![Coverage Status](https://coveralls.io/repos/libtom/libtomcrypt/badge.png?branch=develop)](https://coveralls.io/r/libtom/libtomcrypt)
13+
develop: [![Build Status](https://github.com/libtom/libtomcrypt/actions/workflows/main.yml/badge.svg?branch=develop)](https://github.com/libtom/libtomcrypt/actions/workflows/main.yml?query=branch%3Adevelop+++) [![Coverage Status](https://coveralls.io/repos/libtom/libtomcrypt/badge.png?branch=develop)](https://coveralls.io/r/libtom/libtomcrypt)
1414

1515
### AppVeyor
1616

0 commit comments

Comments
 (0)