Skip to content

Commit

Permalink
Fix/cargo deny (#178)
Browse files Browse the repository at this point in the history
* fix: cargo deny

* fix: move deny to github action

error on buildkite runner: getaddrinfo() thread failed to start
-> probably because of old docker version
  • Loading branch information
Lazzaretti committed Oct 1, 2023
1 parent fe43a76 commit 488f0db
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 5 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/verify.yml
@@ -0,0 +1,20 @@
name: Verify

on:
push:
branches:
- master
pull_request:


jobs:
check-deny:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: run deny docker compose
run: docker-compose run --rm deny



4 changes: 0 additions & 4 deletions buildkite.yml
Expand Up @@ -11,10 +11,6 @@ steps:
plugins:
- docker-compose#v3.0.3:
run: check-readme
- label: "check deny"
plugins:
- docker-compose#v3.0.3:
run: deny
- label: "example: execute hello world"
commands:
- cd examples/examples/src/hello_world
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Expand Up @@ -27,7 +27,7 @@ services:
working_dir: /cerk
command: ./check-readme.sh
deny:
image: lazzaretti/docker-rust-cerk:0.7.0
image: ghcr.io/ce-rust/rust-cerk:v8.1.0
volumes:
- .:/cerk/
working_dir: /cerk
Expand Down

0 comments on commit 488f0db

Please sign in to comment.