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