Skip to content

Commit

Permalink
test: move to GitHub-provided runners instead of using self-hosted ones
Browse files Browse the repository at this point in the history
  • Loading branch information
simongoricar committed Oct 20, 2024
1 parent 61a42e9 commit 86fe330
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

typos:
name: Check for typos
runs-on: self-hosted
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/[email protected]
Expand All @@ -30,7 +30,7 @@ jobs:

rustfmt:
name: Verify code formatting
runs-on: self-hosted
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/[email protected]
Expand All @@ -44,7 +44,7 @@ jobs:

deny:
name: Run cargo-deny
runs-on: self-hosted
runs-on: ubuntu-latest
steps:
- name: Set up required tools
run: |
Expand All @@ -66,7 +66,7 @@ jobs:
run: cargo deny --all-features --workspace check

test:
runs-on: self-hosted
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/gh-pages-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ concurrency:

jobs:
build-documentation:
runs-on: self-hosted
runs-on: ubuntu-latest
steps:
- name: Set up required tools
run: sudo apt-get update && sudo apt-get install curl build-essential -y
Expand All @@ -40,7 +40,7 @@ jobs:
retention-days: 1

deploy-documentation:
runs-on: self-hosted
runs-on: ubuntu-latest
needs: build-documentation
permissions:
contents: read
Expand Down

0 comments on commit 86fe330

Please sign in to comment.