Skip to content

Commit

Permalink
yml files
Browse files Browse the repository at this point in the history
  • Loading branch information
stefan-aws committed Feb 2, 2024
1 parent e7be576 commit b9771c7
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/build_cs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: 'Build C#'
on:
workflow_dispatch:
pull_request:
push:
branches:
- 'main'
jobs:
build-java:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: bash scripts/prep.sh
- run: DAFNY=dafny/dafny TARGET_LANG=cs bash scripts/build.sh
- run: build/cs/run.sh
14 changes: 14 additions & 0 deletions .github/workflows/test_cs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: 'Run C# tests'
on:
workflow_dispatch:
pull_request:
push:
branches:
- 'main'
jobs:
test-java:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: bash scripts/prep.sh
- run: DAFNY=dafny/dafny TARGET_LANG=cs bash scripts/test.sh

0 comments on commit b9771c7

Please sign in to comment.