mirror of
https://github.com/ivabus/roulette
synced 2024-11-22 16:35:09 +03:00
Merge remote-tracking branch 'origin/main'
This commit is contained in:
commit
428821fbec
2 changed files with 31 additions and 4 deletions
25
.github/workflows/checks.yml
vendored
Normal file
25
.github/workflows/checks.yml
vendored
Normal file
|
@ -0,0 +1,25 @@
|
|||
# This is a basic workflow to help you get started with Actions
|
||||
|
||||
name: checks
|
||||
|
||||
# Controls when the workflow will run
|
||||
on:
|
||||
# Triggers the workflow on push or pull request events but only for the main branch
|
||||
push:
|
||||
branches: [ main ]
|
||||
pull_request:
|
||||
branches: [ main ]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Setup .NET
|
||||
uses: actions/setup-dotnet@v1
|
||||
with:
|
||||
dotnet-version: 6.0.x
|
||||
- name: Restore dependencies
|
||||
run: dotnet restore
|
||||
- name: Build
|
||||
run: dotnet build --no-restore
|
10
README.md
10
README.md
|
@ -1,11 +1,15 @@
|
|||
# Рулетка / Roulette
|
||||
[![checks](https://github.com/ivabus/roulette/actions/workflows/checks.yml/badge.svg)](https://github.com/ivabus/roulette/actions/workflows/checks.yml)
|
||||
![GitHub all releases](https://img.shields.io/github/downloads/ivabus/roulette/total)
|
||||
![GitHub release (latest SemVer)](https://img.shields.io/github/v/release/ivabus/roulette)
|
||||
![GitHub commit activity](https://img.shields.io/github/commit-activity/m/ivabus/roulette)
|
||||
![GitHub](https://img.shields.io/github/license/ivabus/roulette)
|
||||
|
||||
|
||||
## Игра с открытым исходным кодом на VB.NET
|
||||
|
||||
Создатель и сопроводитель: Иван Бущик <ivan@bushchik.ru>
|
||||
|
||||
Лицензия: MIT
|
||||
|
||||
Игра представляет собой Европейскую рулетку в консоли.
|
||||
|
||||
## Поддержка платформ
|
||||
|
@ -39,8 +43,6 @@
|
|||
|
||||
Creator and maintainer: Ivan Bushchik <ivan@bushchik.ru>
|
||||
|
||||
License: MIT
|
||||
|
||||
The game is a European roulette in the console.
|
||||
|
||||
## Platform support
|
||||
|
|
Loading…
Reference in a new issue