Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/gigitux/gtkwhats
Browse files Browse the repository at this point in the history
  • Loading branch information
gigitux committed Jun 14, 2020
2 parents e605450 + 856fdd1 commit 8c5ed04
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Rust

on:
push:
branches: [master]
pull_request:
branches: [master]

env:
CARGO_TERM_COLOR: always

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Create vender
run: cargo vendor
- name: Set configuration
run: |
mkdir .cargo && touch .cargo/.config
echo '[source.crates-io] \n replace-with = \"vendored-sources\" \n [source.vendored-sources] \n directory = "vendor"' >> .cargo/.config
- uses: actions/upload-artifact@v2
with:
name: flatpak_build
path: .

0 comments on commit 8c5ed04

Please sign in to comment.