Skip to content

Commit

Permalink
disable ci profile for github action test run
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiaszimmermann committed Sep 10, 2024
1 parent c08ccbc commit 4205990
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,8 @@ jobs:
contract_sizes.log
test_foundry:
name: Run tests (Foundry - ci profile)
# name: Run tests (Foundry - ci profile)
name: Run tests (Foundry)
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand All @@ -90,8 +91,8 @@ jobs:
if: |
github.event_name != 'pull_request' ||
! contains(github.event.pull_request.labels.*.name, 'run_all_tests')
env:
FOUNDRY_PROFILE: ci
# env:
# FOUNDRY_PROFILE: ci
run: forge test -vv --nmt "_longRunning"

- name: Run all tests (label 'run_all_tests')
Expand All @@ -103,8 +104,8 @@ jobs:
&& contains(github.event.pull_request.labels.*.name, 'run_all_tests')
) ||
github.event.schedule == '33 3 * * *'
env:
FOUNDRY_PROFILE: ci
# env:
# FOUNDRY_PROFILE: ci
run: forge test -vv

publish:
Expand Down
1 change: 0 additions & 1 deletion contracts/authorization/IAuthorization.sol
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
pragma solidity ^0.8.20;

import {IServiceAuthorization} from "./IServiceAuthorization.sol";
import {RoleId} from "../type/RoleId.sol";
import {Str} from "../type/String.sol";


Expand Down
2 changes: 1 addition & 1 deletion contracts/distribution/BasicDistribution.sol
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import {Distribution} from "./Distribution.sol";
import {DistributorType} from "../type/DistributorType.sol";
import {DISTRIBUTOR} from "../type/ObjectType.sol";
import {Fee} from "../type/Fee.sol";
import {NftId, NftIdLib} from "../type/NftId.sol";
import {NftId} from "../type/NftId.sol";
import {ReferralId} from "../type/Referral.sol";
import {Seconds} from "../type/Seconds.sol";
import {Timestamp} from "../type/Timestamp.sol";
Expand Down

0 comments on commit 4205990

Please sign in to comment.