Skip to content

Commit

Permalink
Merge branch 'master' of github.com:Yatekii/sailor
Browse files Browse the repository at this point in the history
  • Loading branch information
Yatekii committed Sep 8, 2019
2 parents 80a5786 + 94b9d26 commit e38ce6f
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 7 deletions.
23 changes: 17 additions & 6 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,22 @@ on: [push]
jobs:
build:

runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
rust: [stable, nightly]

steps:
- uses: actions/checkout@v1
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
- uses: hecrj/setup-rust-action@v1
with:
rust-version: ${{ matrix.rust }}
- uses: actions/checkout@master
- name: Build lib
run: cargo build --verbose --lib
- name: Build bin
run: cargo build --verbose --bin sailor
- name: Run tests lib
run: cargo test --verbose --lib
- name: Run tests bin
run: cargo test --verbose --bin sailor
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

A sailing navigation application.

![screenshot](doc/img/main.jpg)
![screenshot](doc/img/screenshot.png)
Binary file added doc/img/screenshot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit e38ce6f

Please sign in to comment.