mirror of
https://github.com/pfusik/xasm.git
synced 2024-12-22 15:31:23 +00:00
Continuous Integration with GitHub Actions.
This commit is contained in:
parent
2f67b3bab4
commit
2b7d21ae43
14
.github/workflows/test.yml
vendored
Normal file
14
.github/workflows/test.yml
vendored
Normal file
@ -0,0 +1,14 @@
|
||||
name: tests
|
||||
on: [push, pull_request]
|
||||
jobs:
|
||||
test:
|
||||
strategy:
|
||||
matrix:
|
||||
os: [windows-latest, ubuntu-latest]
|
||||
dc: [dmd-latest, gdc-latest, ldc-latest]
|
||||
runs-on: ${{ matrix.os }}
|
||||
steps:
|
||||
- uses: actions/checkout@main
|
||||
- uses: dlang-community/setup-dlang@v1
|
||||
- run: dub build --compiler=$DC
|
||||
- run: dub test --compiler=$DC
|
Loading…
Reference in New Issue
Block a user