Update CI script for second post

This commit is contained in:
Philipp Oppermann
2023-04-30 17:10:47 +02:00
parent e2dca79d0d
commit 0a21782583

View File

@@ -15,8 +15,7 @@ jobs:
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- run: rustup target add x86_64-unknown-none - run: cargo check
- run: cargo check --target x86_64-unknown-none
test: test:
name: Test name: Test
@@ -30,9 +29,7 @@ jobs:
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- run: cargo build
- run: rustup target add x86_64-unknown-none
- run: cargo build --target x86_64-unknown-none
fmt: fmt:
name: Check Formatting name: Check Formatting
@@ -46,7 +43,4 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- run: cargo clippy
- run: rustup target add x86_64-unknown-none
- run: rustup component add clippy
- run: cargo clippy --target x86_64-unknown-none