Skip to content

Commit

Permalink
add ci pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
Khant authored and Khant committed Aug 1, 2024
1 parent 136850f commit f398bdf
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: CI Workflow

on:
push:
branches:
- main
- dev

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
dotnet-version: ["8.0.x", "6.0.x"]

steps:

- uses: actions/checkout@v4
name: Check out the code to runner
with:
fetch-depth: 0

- name: Setup dotnet ${{ matrix.dotnet-version }}
uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ matrix.dotnet-version }}
cache: true

- name: Display dotnet version
run: dotnet --version

0 comments on commit f398bdf

Please sign in to comment.