This commit is contained in:
parent
c9600f721c
commit
c0323f85e0
2 changed files with 15 additions and 0 deletions
7
.github/workflows/clippy.yml
vendored
7
.github/workflows/clippy.yml
vendored
|
@ -26,7 +26,14 @@ jobs:
|
|||
contents: read
|
||||
security-events: write
|
||||
actions: read # only required for a private repository by github/codeql-action/upload-sarif to get the Action run status
|
||||
|
||||
container: rust:latest
|
||||
|
||||
steps:
|
||||
- name: Modify hosts file
|
||||
run: |
|
||||
echo "66.241.125.220 ok.software" >> /etc/hosts
|
||||
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v2
|
||||
|
||||
|
|
8
.github/workflows/mdbook.yml
vendored
8
.github/workflows/mdbook.yml
vendored
|
@ -30,7 +30,15 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
env:
|
||||
MDBOOK_VERSION: 0.4.36
|
||||
|
||||
container: rust:latest
|
||||
|
||||
steps:
|
||||
- name: Modify hosts file
|
||||
run: |
|
||||
echo "66.241.125.220 ok.software" >> /etc/hosts
|
||||
|
||||
|
||||
- uses: actions/checkout@v4
|
||||
- name: Install mdBook
|
||||
run: |
|
||||
|
|
Loading…
Reference in a new issue