fix: [QS-ALC-4] mask deadline 48 bits #849
Workflow file for this run
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: Test | |
on: [pull_request, workflow_dispatch] | |
concurrency: | |
group: ${{github.workflow}}-${{github.ref}} | |
cancel-in-progress: true | |
# Runs linter, tests, and inspection checker in parallel | |
jobs: | |
test-optimized-test-deep: | |
name: Run Forge Tests (optimized-test-deep) | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- uses: ./.github/workflows/setup-ci | |
- name: Build project | |
run: FOUNDRY_PROFILE=optimized-build forge build | |
- name: Run tests | |
run: FOUNDRY_PROFILE=optimized-test-deep forge test -vvv | |
test-default: | |
name: Run Forge Tests (default) | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- uses: ./.github/workflows/setup-ci | |
- name: Build project | |
run: forge build | |
- name: Run tests | |
run: forge test -vvv |