Skip to content

Commit

Permalink
Merge branch 'master' of github.com:golemfactory/yagna into provider/…
Browse files Browse the repository at this point in the history
…plugable-negotiators
  • Loading branch information
nieznanysprawiciel committed Nov 8, 2022
2 parents af15cee + 3a49f1b commit c5c9d22
Show file tree
Hide file tree
Showing 394 changed files with 9,075 additions and 4,762 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/add-to-core-team-project.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Add New Issues To Core Team Project

on:
issues:
types:
- opened

jobs:
add-to-project:
name: Add issue to project
runs-on: ubuntu-latest
steps:
- uses: actions/add-to-project@v0.1.0
with:
project-url: https://github.com/orgs/golemfactory/projects/30
github-token: ${{ secrets.CORE_BOARD_ACTIONS_TOKEN }}

16 changes: 16 additions & 0 deletions .github/workflows/dod-checker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Definition of Done
on:
pull_request:
types: [opened, edited]

jobs:
check-dod:
runs-on: ubuntu-20.04
steps:
- name: Clone Repo
uses: actions/checkout@v3
- name: Check DoD
uses: platisd/definition-of-done@master
with:
dod_yaml: 'dod.yml'
github_token: ${{ secrets.CORE_BOARD_ACTIONS_TOKEN }}
7 changes: 6 additions & 1 deletion .github/workflows/unit-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,12 @@ jobs:
command: fmt
args: --all -- --check

- name: Check clippy lints
uses: actions-rs/cargo@v1
with:
command: clippy
args: --all-targets --all-features --workspace -- -D warnings

- name: Install openssl ( Windows only )
if: runner.os == 'Windows'
run: |
Expand All @@ -56,4 +62,3 @@ jobs:
with:
command: test
args: --workspace --exclude=["./agent/provider/src/market"] --locked

4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,14 @@ releases/

# Provider dir
**/ya-prov
**/ya-prov_hybrid

# Requestor dir
**/ya-req
**/ya-req_hybrid

# Keys
**/*.key

# bak files (generated by notepad++)
**/*.bak
**/*.bak
Loading

0 comments on commit c5c9d22

Please sign in to comment.