File tree Expand file tree Collapse file tree 1 file changed +0
-18
lines changed Expand file tree Collapse file tree 1 file changed +0
-18
lines changed Original file line number Diff line number Diff line change 2626 run : rustup update stable && rustup default stable && rustup component add rustfmt
2727 - run : cargo fmt -- --check
2828
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-
4729 cross_compile_test :
4830 name : Test Cross Compile - ${{ matrix.platform.target }}
4931 needs : [ test ]
You can’t perform that action at this time.
0 commit comments