Skip to content

Commit

Permalink
CI: Correct GitHub Action names
Browse files Browse the repository at this point in the history
  • Loading branch information
dd86k committed May 8, 2024
1 parent b5d4cdf commit 6c4eefc
Show file tree
Hide file tree
Showing 4 changed files with 59 additions and 47 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/alicedbg.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Alicedbg

on: [ push, pull_request ]

# Tests ensures the project builds and executes unittest.
# The entry points are rather minimal.
jobs:
Alicedbg:
strategy:
matrix:
os: [ ubuntu-20.04, ubuntu-22.04, windows-2019, windows-2022 ]
dc: [ dmd-latest, ldc-latest ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Setup D compiler
uses: dlang-community/setup-dlang@v1
with:
compiler: ${{ matrix.dc }}
- name: Test
run: dub test -c debugger
21 changes: 21 additions & 0 deletions .github/workflows/alicedump.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Alicedump

on: [ push, pull_request ]

# Tests ensures the project builds and executes unittest.
# The entry points are rather minimal.
jobs:
Alicedump:
strategy:
matrix:
os: [ ubuntu-20.04, ubuntu-22.04, windows-2019, windows-2022 ]
dc: [ dmd-latest, ldc-latest ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Setup D compiler
uses: dlang-community/setup-dlang@v1
with:
compiler: ${{ matrix.dc }}
- name: Test
run: dub test -c dumper
47 changes: 0 additions & 47 deletions .github/workflows/all.yaml

This file was deleted.

17 changes: 17 additions & 0 deletions .github/workflows/simple.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Simple

on: [ push, pull_request ]

# Tests ensures the project builds and executes unittest.
# The entry points are rather minimal.
jobs:
Simple:
strategy:
matrix:
os: [ ubuntu-latest, windows-latest ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: dlang-community/setup-dlang@v1
- name: Test
run: dub build -c simple

0 comments on commit 6c4eefc

Please sign in to comment.