File tree 1 file changed +0
-18
lines changed 1 file changed +0
-18
lines changed Original file line number Diff line number Diff line change 26
26
run : rustup update stable && rustup default stable && rustup component add rustfmt
27
27
- run : cargo fmt -- --check
28
28
29
- publish_docs :
30
- name : Publish Documentation
31
- runs-on : ubuntu-latest
32
- steps :
33
- - uses : actions/checkout@master
34
- - name : Install Rust
35
- run : rustup update stable && rustup default stable
36
- - name : Build documentation
37
- run : cargo doc --no-deps --all-features
38
- - name : Publish documentation
39
- run : |
40
- cd target/doc
41
- git init
42
- git add .
43
- git -c user.name='ci' -c user.email='ci' commit -m init
44
- git push -f -q https://git:${{ secrets.github_token }}@github.com/${{ github.repository }} HEAD:gh-pages
45
- if : github.event_name == 'push' && github.event.ref == 'refs/heads/master'
46
-
47
29
cross_compile_test :
48
30
name : Test Cross Compile - ${{ matrix.platform.target }}
49
31
needs : [ test ]
You can’t perform that action at this time.
0 commit comments