ofborg/.github/workflows/ci.yml

34 lines
811 B
YAML
Raw Normal View History

2020-05-12 02:43:50 +00:00
name: CI
on:
push:
2020-06-15 16:57:27 +00:00
branches: [released]
2020-05-12 02:43:50 +00:00
pull_request:
jobs:
checkPhase:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
2020-05-12 02:43:50 +00:00
- name: Install Nix
uses: cachix/install-nix-action@v17
with:
nix_path: nixpkgs=channel:nixos-unstable
2020-05-12 02:43:50 +00:00
- name: Set up git
run: |
git config --global user.email "ofborg@example.com"
git config --global user.name "ofborg"
- name: checkPhase
run: nix-shell --pure --run "cargo test"
2020-05-12 02:43:50 +00:00
nix-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
2020-05-12 02:43:50 +00:00
- name: Install Nix
uses: cachix/install-nix-action@v17
with:
nix_path: nixpkgs=channel:nixos-unstable
2020-05-12 02:43:50 +00:00
- name: nix-build
run: nix-build -A ofborg.rs -A ofborg.php