Skip to content

Whiley/WhileyBuildAction

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

32 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

WhileyBuildAction

A Github action for building Whiley project repositories. You can find example repositories using the action here and here.

Example

To add a build action to your Whiley project, create a file .github/workflows/main.yml as follows:

on: push

jobs:
   build:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2

      - name: Build Whiley Project
        uses: Whiley/WhileyBuildAction@v1

This signals the action to run whenever someone pushes to your repository.

Version

By default, the action uses the latest version of the WhileyDevelopmentKit. However, you can specify a specific version if you want stability. To do this, add a with clause as follows:

        ...
        uses: Whiley/WhileyBuildAction@v1
        with:
          version: 'v0.5.0'

QuickCheck

By default, QuickCheck for Whiley is not enabled to run on your repository. However, you can signal this to run by adding a with clause as follows:

        ...
        uses: Whiley/WhileyBuildAction@v1
        with:
          checking: true