Skip to content

Commit

Permalink
Change ci
Browse files Browse the repository at this point in the history
  • Loading branch information
Ciubix8513 committed Jul 8, 2024
1 parent 7922cd2 commit 47060cc
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ env:

jobs:
build:
runs-on: self-hosted
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build
Expand All @@ -23,8 +23,12 @@ jobs:
- name: Linting
run: cargo clippy -- -D warnings -D clippy::pedantic -D clippy::nursery
build-wasm:
runs-on: self-hosted
runs-on: ubuntu-latest
steps:
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
target: wasm32-unknown-unknown
- uses: actions/checkout@v3
- name: Build
run: cargo build --target=wasm32-unknown-unknown --features webgl
Expand Down

0 comments on commit 47060cc

Please sign in to comment.