diff options
| author | Guillaume Gomez <guillaume1.gomez@gmail.com> | 2023-12-16 17:39:58 +0100 |
|---|---|---|
| committer | Guillaume Gomez <guillaume1.gomez@gmail.com> | 2023-12-16 17:39:58 +0100 |
| commit | 95dfe5ec9040bcba53a8dd61d3593d182defab71 (patch) | |
| tree | bb6bed6ba9a0fdc94b8ca75b85bc6d4f55793dc5 /.github/workflows | |
| parent | db9b932314023318f49b0b5941d09f034a12b31e (diff) | |
| download | rust-95dfe5ec9040bcba53a8dd61d3593d182defab71.tar.gz rust-95dfe5ec9040bcba53a8dd61d3593d182defab71.zip | |
Simplify `split_args` code, add a unit test for it and run it into CI
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/ci.yml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8e361bf617b..b04ea1550ba 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -131,3 +131,12 @@ jobs: steps: - uses: actions/checkout@v3 - run: python tools/check_intrinsics_duplicates.py + + build_system: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Test build system + run: | + cd build_system + cargo test |
