Only accept txs once synced #10508
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build solutions | |
on: | |
pull_request: | |
branches: [master] | |
push: | |
branches: [master] | |
merge_group: | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
config: [release, debug] | |
solution: [Nethermind, EthereumTests, Benchmarks] | |
steps: | |
- name: Free up disk space | |
uses: jlumbroso/free-disk-space@main | |
with: | |
large-packages: false | |
tool-cache: false | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
with: | |
submodules: ${{ matrix.solution == 'EthereumTests' }} | |
- name: Set up .NET | |
uses: actions/setup-dotnet@v4 | |
- name: Build ${{ matrix.solution }}.sln | |
run: dotnet build src/Nethermind/${{ matrix.solution }}.sln -c ${{ matrix.config }} |